chore: isolate dev services from production ports

This commit is contained in:
hajimi
2026-08-02 16:37:17 +08:00
parent 9b908ae396
commit 71cfd68859
3 changed files with 9 additions and 4 deletions
@@ -1,5 +1,5 @@
server {
listen 8000;
listen 8100;
server_name _;
root /likeadmin_php/server/public;
index index.html index.htm index.php;
@@ -17,7 +17,7 @@ server {
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_pass 127.0.0.1:9100;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /likeadmin_php/server/public$fastcgi_script_name;
}
+3
View File
@@ -0,0 +1,3 @@
[www]
listen = 127.0.0.1:9100
listen.allowed_clients = 127.0.0.1