zanphp.io nginx config
server { | |
listen 80; | |
server_name zanphp.io; | |
charset utf-8; | |
access_log /data/logs/nginx/zanphp.access.log main; | |
error_log /data/logs/nginx/zanphp.error.log; | |
root /home/www/zanphp.io; | |
index index.html index.htm index.php; | |
error_page 404 /404.html; | |
error_page 500 502 503 504 /50x.html; | |
location = /50x.html { | |
root html; | |
} | |
location = /404.html { | |
root html; | |
} | |
location / { | |
index index.html index.htm index.php; | |
proxy_set_header Host $host:$server_port; | |
proxy_pass http://127.0.0.1:9588; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment