21 lines
434 B
Text
21 lines
434 B
Text
|
|
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;
|
||
|
|
}
|
||
|
|
}
|