limesurvey

This commit is contained in:
pvincent
2024-10-20 18:36:46 +04:00
parent 300839d5b7
commit a214f925bc
3 changed files with 287 additions and 0 deletions
@@ -0,0 +1,16 @@
server {
listen {{ env.APP_PORT }};
server_name localhost;
root /var/www/limesurvey/{{ env.APP_NAME }};
index index.php;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php-fpm.sock;
}
}