31 lines
708 B
Nginx Configuration File
31 lines
708 B
Nginx Configuration File
map $http_x_forwarded_proto $forwarded_scheme {
|
|
default $scheme;
|
|
http http;
|
|
https https;
|
|
}
|
|
|
|
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;
|
|
fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
|
|
fastcgi_param REQUEST_SCHEME $forwarded_scheme;
|
|
}
|
|
|
|
location ~ /\.ht {
|
|
deny all;
|
|
}
|
|
}
|