aboutsummaryrefslogtreecommitdiffstats
path: root/testing/netbox/netbox.nginx-sample
blob: 37c2a943bac81cf29310b0b740889cf9c70831e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
server {
    listen 80;

    server_name netbox.mydomain;

    client_max_body_size 25m;

    location /static/ {
        alias /usr/share/webapps/netbox/static/;
    }

    location / {
        proxy_pass http://127.0.0.1:8001;
        proxy_set_header X-Forwarded-Host $server_name;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-Proto $scheme;
        add_header P3P 'CP="ALL DSP COR PSAa PSDa OUR NOR ONL UNI COM NAV"';
    }
}