feat: implement core application UI and backend services for PHP environment management

This commit is contained in:
Ümit Tunç
2026-03-28 20:34:33 +03:00
parent f336bd2e7c
commit ab037b7bd9
14 changed files with 542 additions and 143 deletions
+12
View File
@@ -20,6 +20,18 @@ http {
try_files $uri $uri/ /index.php?$query_string;
}
location /phpmyadmin {
alias "{{PHPMYADMIN_DIR}}";
index index.php;
location ~ ^/phpmyadmin/(.+\.php)$ {
alias "{{PHPMYADMIN_DIR}}/$1";
fastcgi_pass 127.0.0.1:{{PHP_PORT}};
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $request_filename;
include "{{CONF_DIR}}/fastcgi_params";
}
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:{{PHP_PORT}};
fastcgi_index index.php;