initial commit

This commit is contained in:
Johann 2025-08-21 15:31:19 +02:00
commit 8e27e10f26
12 changed files with 202 additions and 0 deletions

View file

@ -0,0 +1,21 @@
server {
listen 80;
listen [::]:80;
server_name {{ nginx_site_fqdn }};
root /var/www/glpi/public;
location / {
try_files $uri /index.php$is_args$args;
}
location ~ ^/index\.php$ {
fastcgi_pass unix:/run/php/php-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}