feat: implement backend service management for Nginx, PHP, and MySQL with configuration templating and IPC handlers

This commit is contained in:
Ümit Tunç
2026-03-28 16:37:16 +03:00
parent 8abffa741f
commit 91b13513fc
6 changed files with 206 additions and 24 deletions
+4 -2
View File
@@ -1,9 +1,11 @@
error_log "{{LOG_DIR}}/nginx_error.log";
pid "{{LOG_DIR}}/nginx.pid";
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
include "{{CONF_DIR}}/mime.types";
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
@@ -22,7 +24,7 @@ http {
fastcgi_pass 127.0.0.1:{{PHP_PORT}};
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
include "{{CONF_DIR}}/fastcgi_params";
}
}
}