aboutsummaryrefslogtreecommitdiff
path: root/extra/stackbin.conf.nginx
blob: e53b2520ea2458f387f629b4931acd0777b0d50c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Nginx example config for stackbin application
# Needs setsebool -P http_can_network_connect 1
location /stackbin/ {
   #proxy_redirect    off;
   proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
   proxy_set_header  X-Real-IP $remote_addr;
   proxy_set_header  X-Script-Name /stackbin;
   proxy_set_header  X-Forwarded-Host $host;
   proxy_set_header  X-Forwarded-Proto $scheme;
   proxy_set_header  X-Forwarded-Prefix "/stackbin";
   proxy_pass  http://localhost:4680/;
}

bgstack15