2023-04-08 00:42:55 +02:00
|
|
|
server {
|
|
|
|
listen 80 default_server;
|
|
|
|
listen [::]:80 default_server;
|
|
|
|
|
|
|
|
root /var/www/rvr/public;
|
|
|
|
|
|
|
|
index index.php index.html index.htm index.nginx-debian.html;
|
|
|
|
|
|
|
|
server_name rvr-dev.ch;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ /index.php?$args;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ \.php$ {
|
|
|
|
include snippets/fastcgi-php.conf;
|
2023-09-27 21:26:17 +02:00
|
|
|
fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
|
2023-04-08 00:42:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
location ~ /\.ht {
|
|
|
|
deny all;
|
|
|
|
}
|
|
|
|
}
|