forked from infra/ansible
47 lines
909 B
Django/Jinja
47 lines
909 B
Django/Jinja
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name {{ librenms_domain }};
|
|
|
|
location / {
|
|
return 301 https://{{ librenms_domain }}$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name {{ librenms_domain }};
|
|
|
|
ssl_certificate_key /etc/nginx/ssl/{{ librenms_domain }}.key;
|
|
ssl_certificate /etc/nginx/ssl/{{ librenms_domain }}.crt;
|
|
|
|
root /usr/share/librenms/html;
|
|
|
|
index index.php;
|
|
|
|
location / {
|
|
try_files $uri $uri/ @librenms;
|
|
}
|
|
|
|
location ~ \.php {
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
|
|
fastcgi_intercept_errors on;
|
|
}
|
|
|
|
location ~ /\.ht {
|
|
deny all;
|
|
}
|
|
|
|
location @librenms {
|
|
rewrite api/v0(.*)$ /api_v0.php/$1 last;
|
|
rewrite ^(.+)$ /index.php/$1 last;
|
|
}
|
|
}
|