: add firefly 3

This commit is contained in:
VC
2025-02-07 22:44:03 +01:00
parent 1f210933ea
commit f8afabca9e
3 changed files with 25 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
server {
{% include './templates/header.conf.j2' %}
root /srv/http/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;
}
}