web-utils/configure_nginx.php

33 lines
1.1 KiB
PHP
Raw Normal View History

2021-08-08 17:23:49 +00:00
<?php
echo "> This script will generate a folder in the current directory where you can find every config file to use to make this thing works with nginx \n";
echo "\n";
$appBasePath = __DIR__;
$path = $appBasePath . '/tmp/generated_nginx_conf';
if (!file_exists($path)) {
mkdir($path, 0777, true);
}
require('./load_config.php');
$template = file_get_contents('./nginx.conf.template');
$phpSocket = '/var/run/php/php8.0-fpm.sock';
foreach ($config['modules'] as $moduleName => $moduleConfig) {
$domains = array_merge([$moduleName], $moduleConfig['alias'] ?? []);
$domains = array_map(fn ($d) => $d . '.' . $config['domain'], $domains);
$serverName = implode(' ', $domains);
$nginxConfig = $template;
$nginxConfig = str_replace('{{ROOT_PATH}}', $appBasePath, $nginxConfig);
2021-08-08 17:23:49 +00:00
$nginxConfig = str_replace('{{SERVER_NAME}}', $serverName, $nginxConfig);
$nginxConfig = str_replace('{{PHP_SOCKET}}', $phpSocket, $nginxConfig);
file_put_contents($path . '/' . $domains[0], $nginxConfig);
echo "> Wrote " . strlen($nginxConfig) . " bytes in " . $path . '/' . $domains[0] . "\n";
}
echo "\n";
echo "> Done.\n";