19 lines
288 B
Nginx Configuration File
Raw Permalink Normal View History

2017-08-08 15:55:43 +02:00
server {
listen 80;
listen [::]:80;
root /var/www/html;
index index.php;
client_body_buffer_size 1M;
client_max_body_size 10M;
location / {
}
location ~ .php$ {
include fastcgi_params;
include fastcgi.conf;
fastcgi_index index.php;
fastcgi_pass 127.0.0.1:9000;
}
}