24 lines
542 B
Nginx Configuration File
24 lines
542 B
Nginx Configuration File
|
server {
|
||
|
listen 80 default_server;
|
||
|
listen [::]:80 default_server;
|
||
|
|
||
|
root /var/www/mapguesser/public;
|
||
|
|
||
|
index index.php index.html index.htm index.nginx-debian.html;
|
||
|
|
||
|
server_name mapguesser-dev.ch;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ /index.php?$args;
|
||
|
}
|
||
|
|
||
|
location ~ \.php$ {
|
||
|
include snippets/fastcgi-php.conf;
|
||
|
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
|
||
|
}
|
||
|
|
||
|
location ~ /\.ht {
|
||
|
deny all;
|
||
|
}
|
||
|
}
|