1
0
Fork 0
Authentication2.0/resources/nginx/default.conf

16 lines
306 B
Plaintext

server {
listen 80;
index index.php;
server_name localhost;
root /webroot;
location ~ \.php$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param REDIRECT_STATUS 200;
fastcgi_pass php:9000;
}
}