22 lines
549 B
Plaintext
22 lines
549 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
server_name nms.zoo.lo;
|
||
|
root /opt/librenms/html;
|
||
|
index index.php;
|
||
|
|
||
|
charset utf-8;
|
||
|
gzip on;
|
||
|
gzip_types text/css application/javascript text/javascript application/x-javascript image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon;
|
||
|
location / {
|
||
|
try_files $uri $uri/ /index.php?$query_string;
|
||
|
}
|
||
|
location ~ [^/]\.php(/|$) {
|
||
|
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
|
||
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||
|
include fastcgi.conf;
|
||
|
}
|
||
|
location ~ /\.(?!well-known).* {
|
||
|
deny all;
|
||
|
}
|
||
|
}
|