112 lines
4.4 KiB
JavaScript
112 lines
4.4 KiB
JavaScript
/*
|
|
Copyright 2021 DigitalOcean
|
|
|
|
This code is licensed under the MIT License.
|
|
You may obtain a copy of the License at
|
|
https://github.com/digitalocean/nginxconfig.io/blob/master/LICENSE or https://mit-license.org/
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions :
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
|
|
import toConf from './to_conf';
|
|
import toYaml from './to_yaml';
|
|
import nginxConf from './conf/nginx.conf';
|
|
import websiteConf from './conf/website.conf';
|
|
import letsEncryptConf from './conf/letsencrypt.conf';
|
|
import securityConf from './conf/security.conf';
|
|
import generalConf from './conf/general.conf';
|
|
import phpConf from './conf/php_fastcgi.conf';
|
|
import pythonConf from './conf/python_uwsgi.conf';
|
|
import proxyConf from './conf/proxy.conf';
|
|
import wordPressConf from './conf/wordpress.conf';
|
|
import drupalConf from './conf/drupal.conf';
|
|
import magentoConf from './conf/magento.conf';
|
|
import joomlaConf from './conf/joomla.conf';
|
|
import dockerComposeYaml from './yaml/dockerCompose.yaml';
|
|
import dockerConf from './ext/docker';
|
|
|
|
export default (domains, global) => {
|
|
const files = {};
|
|
|
|
// Base nginx config
|
|
files['nginx.conf'] = toConf(nginxConf(domains, global));
|
|
|
|
// Dockerfile
|
|
if (global.docker.dockerfile.computed)
|
|
files['Dockerfile'] = dockerConf();
|
|
|
|
if (global.docker.dockerCompose.computed)
|
|
files['docker-compose.yaml'] = toYaml(dockerComposeYaml());
|
|
|
|
// Modularised configs
|
|
if (global.tools.modularizedStructure.computed) {
|
|
// Domain config
|
|
const sitesDir = `sites-${global.tools.symlinkVhost.computed ? 'available' : 'enabled'}`;
|
|
const ipPortPairs = new Set();
|
|
for (const domain of domains) {
|
|
files[`${sitesDir}/${domain.server.domain.computed}.conf`] = toConf(websiteConf(domain, domains, global, ipPortPairs));
|
|
}
|
|
|
|
// Let's encrypt
|
|
if (domains.some(d => d.https.certType.computed === 'letsEncrypt'))
|
|
files['nginxconfig.io/letsencrypt.conf'] = toConf(letsEncryptConf(global));
|
|
|
|
// Security
|
|
files['nginxconfig.io/security.conf'] = toConf(securityConf(domains, global));
|
|
|
|
// General
|
|
files['nginxconfig.io/general.conf'] = toConf(generalConf(domains, global));
|
|
|
|
// PHP
|
|
if (domains.some(d => d.php.php.computed))
|
|
files['nginxconfig.io/php_fastcgi.conf'] = toConf(phpConf(domains));
|
|
|
|
// Python
|
|
if (domains.some(d => d.python.python.computed))
|
|
files['nginxconfig.io/python_uwsgi.conf'] = toConf(pythonConf(global));
|
|
|
|
// Reverse proxy
|
|
if (domains.some(d => d.reverseProxy.reverseProxy.computed))
|
|
files['nginxconfig.io/proxy.conf'] = toConf(proxyConf(global));
|
|
|
|
// WordPress
|
|
if (domains.some(d => d.php.wordPressRules.computed))
|
|
files['nginxconfig.io/wordpress.conf'] = toConf(wordPressConf(global));
|
|
|
|
// Drupal
|
|
if (domains.some(d => d.php.drupalRules.computed))
|
|
files['nginxconfig.io/drupal.conf'] = toConf(drupalConf(global));
|
|
|
|
// Magento
|
|
if (domains.some(d => d.php.magentoRules.computed))
|
|
files['nginxconfig.io/magento.conf'] = toConf(magentoConf());
|
|
|
|
// Joomla
|
|
if (domains.some(d => d.php.joomlaRules.computed))
|
|
files['nginxconfig.io/joomla.conf'] = toConf(joomlaConf());
|
|
|
|
} else {
|
|
// PHP
|
|
if (domains.some(d => d.php.wordPressRules.computed))
|
|
files['nginxconfig.io/php_fastcgi.conf'] = toConf(phpConf(domains));
|
|
}
|
|
|
|
return files;
|
|
};
|