##// END OF EJS Templates
api: pull-requests, fixed invocation of merge as another user.
api: pull-requests, fixed invocation of merge as another user.

File last commit:

r3326:e2b04156 default
r3481:b5202911 default
Show More
nginx-proxy-conf.rst
47 lines | 1.6 KiB | text/x-rst | RstLexer
/ docs / admin / nginx-proxy-conf.rst
docs: updated scaling/cluster docs
r3018 .. _nginx-proxy-conf:
Nginx Proxy Config
------------------
Set the following properties in your ``/etc/nginx/proxy.conf`` so it does not
timeout during large pushes.
.. code-block:: nginx
proxy_redirect off;
proxy_set_header Host $http_host;
docs: updated configuration for nginx and reverse proxy.
r3326 ## If you use HTTPS make sure you disable gzip compression
## to be safe against BREACH attack.
gzip off;
# Don't buffer requests in NGINX stream them using chunked-encoding
proxy_buffering off;
## This is also required for later GIT to use streaming.
## Works only for Nginx 1.7.11 and newer
proxy_request_buffering off;
proxy_http_version 1.1;
## Set this to a larger number if you experience timeouts
## or 413 Request Entity Too Large, 10GB is enough for most cases
client_max_body_size 10240m;
docs: updated scaling/cluster docs
r3018 ## needed for container auth
docs: updated configuration for nginx and reverse proxy.
r3326 # proxy_set_header REMOTE_USER $remote_user;
# proxy_set_header X-Forwarded-User $remote_user;
docs: updated scaling/cluster docs
r3018
proxy_set_header X-Url-Scheme $scheme;
proxy_set_header X-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 Proxy-host $proxy_host;
docs: updated configuration for nginx and reverse proxy.
r3326
docs: updated scaling/cluster docs
r3018 proxy_connect_timeout 7200;
proxy_send_timeout 7200;
proxy_read_timeout 7200;
proxy_buffers 8 32k;
docs: updated configuration for nginx and reverse proxy.
r3326
docs: updated scaling/cluster docs
r3018 add_header X-Frame-Options SAMEORIGIN;
add_header Strict-Transport-Security "max-age=31536000; includeSubdomains;";