site-musique/nginx.conf

22 lines
498 B
Nginx Configuration File
Raw Normal View History

2017-09-23 12:23:54 +02:00
server {
2017-09-23 12:20:17 +02:00
listen 80;
location / {
root /usr/share/nginx/html;
2017-10-08 12:24:36 +02:00
index index.php;
2017-09-23 12:20:17 +02:00
}
#error_page 404 /404.html;
# pass the PHP scripts to FastCGI server listening on php:9000
#
location ~ \.php$ {
root html;
fastcgi_pass php:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html/$fastcgi_script_name;
include fastcgi_params;
}
}