mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-16 00:22:54 +11:00
9 lines
276 B
Text
9 lines
276 B
Text
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
proxy_set_header Host $http_host;
|
||
|
proxy_redirect off;
|
||
|
proxy_buffering off;
|
||
|
if (!-f $request_filename) {
|
||
|
proxy_pass http://app_server;
|
||
|
break;
|
||
|
}
|