event_web: apply settings needed for engelsystem

This commit is contained in:
Markus 2023-11-24 14:51:18 +01:00
parent ce477eceb2
commit e4f934264f
1 changed files with 14 additions and 1 deletions

View File

@ -51,5 +51,18 @@ server {
ssl_certificate_key /etc/nginx/ssl/eh21.easterhegg.eu.key;
ssl_certificate /etc/nginx/ssl/eh21.easterhegg.eu.crt;
root /var/www/engel;
root /var/www/engel/public;
index index.php;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}