19 lines
391 B
Plaintext
19 lines
391 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
|
||
|
index index.html;
|
||
|
server_name localhost;
|
||
|
|
||
|
error_log /var/log/nginx/error.log;
|
||
|
access_log /var/log/nginx/access.log;
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|