9 lines
308 B
Plaintext
9 lines
308 B
Plaintext
location $URL_ROUTE_BLINDBIT/ {
|
|
proxy_pass http://localhost:$BLINDBIT_PORT/;
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
}
|