feat: implement core application UI and backend services for PHP environment management
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user