chore: isolate dev services from production ports
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
[www]
|
||||
listen = 127.0.0.1:9100
|
||||
listen.allowed_clients = 127.0.0.1
|
||||
Reference in New Issue
Block a user