initial commit
This commit is contained in:
commit
b65642cd0a
18 changed files with 1543 additions and 0 deletions
34
configure_nginx.php
Normal file
34
configure_nginx.php
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<?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);
|
||||
|
||||
$rootPath = $appBasePath . '/' . $domains[0];
|
||||
|
||||
$nginxConfig = $template;
|
||||
$nginxConfig = str_replace('{{ROOT_PATH}}', $rootPath, $nginxConfig);
|
||||
$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";
|
||||
Loading…
Add table
Add a link
Reference in a new issue