33 lines
761 B
Nginx Configuration File
33 lines
761 B
Nginx Configuration File
server {
|
|
listen [::]:443 ssl ipv6only=off;
|
|
|
|
# CHANGE THIS TO YOUR SERVER'S NAME
|
|
server_name netbox.example.com;
|
|
|
|
ssl_certificate /etc/ssl/nginx/nginx.pem;
|
|
ssl_certificate_key /etc/ssl/nginx/nginx.key;
|
|
|
|
client_max_body_size 25m;
|
|
|
|
location /static/ {
|
|
alias /usr/lib/netbox/static/;
|
|
}
|
|
|
|
location / {
|
|
include uwsgi_params;
|
|
uwsgi_pass 127.0.0.1:8001;
|
|
uwsgi_param Host $host;
|
|
uwsgi_param X-Real-IP $remote_addr;
|
|
uwsgi_param X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
uwsgi_param X-Forwarded-Proto $http_x_forwarded_proto;
|
|
|
|
}
|
|
}
|
|
|
|
server {
|
|
# Redirect HTTP traffic to HTTPS
|
|
listen [::]:80 ipv6only=off;
|
|
server_name _;
|
|
return 301 https://$host$request_uri;
|
|
}
|