forked from infra/ansible
39 lines
772 B
Django/Jinja
39 lines
772 B
Django/Jinja
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name {{ netbox_domain }};
|
|
|
|
location /.well-known/acme-challenge {
|
|
default_type "text/plain";
|
|
alias /var/www/acme-challenge;
|
|
}
|
|
|
|
location / {
|
|
return 301 https://{{ netbox_domain }}$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name {{ netbox_domain }};
|
|
|
|
ssl_certificate_key /etc/nginx/ssl/{{ netbox_domain }}.key;
|
|
ssl_certificate /etc/nginx/ssl/{{ netbox_domain }}.crt;
|
|
|
|
location /static/ {
|
|
alias /opt/netbox-{{ netbox_version }}/netbox/static/;
|
|
}
|
|
|
|
location / {
|
|
client_max_body_size 32M;
|
|
|
|
proxy_pass http://localhost:8001;
|
|
proxy_set_header X-Forwarded-Host $http_host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
}
|