slovocast/dev/nginx/nginx.conf

21 lines
473 B
Nginx Configuration File
Raw Permalink Normal View History

2024-11-06 03:10:42 +00:00
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name slovocast;
root /var/www/slovocast/public;
index index.php index.html;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~* \.php$ {
fastcgi_pass php:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
}
}