rvr-nextgen/docker/configs/nginx.conf
Pőcze Bence 7945627708
Some checks failed
rvr-nextgen/pipeline/head There was a failure building this commit
initial commit for rvr-nextgen
2023-04-08 00:45:40 +02:00

24 lines
528 B
Nginx Configuration File

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/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}