Files
ansible/roles/nginx/templates/vhosts/ff.libertus.eu.conf.j2
VC bc8394105e
All checks were successful
ansible-lint / lint-everything (push) Successful in 4s
♻: move firefly3 to app dir
2025-03-09 15:01:51 +01:00

17 lines
311 B
Django/Jinja

server {
{% include './templates/header.conf.j2' %}
root /var/www/ff.libertus.eu/public;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/run/php/php{{ php_version }}-fpm.sock;
}
}