# HG changeset patch # User Marcin Kuzminski # Date 2013-05-29 23:47:03 # Node ID 35c0c62583cd3f00474350190c465d889bdb8122 # Parent ba08786c49ef82203c3ccad59b3c2fd5171ae749 Moved proxy include of nginx to place where it will work for older versions of nginx diff --git a/docs/setup.rst b/docs/setup.rst --- a/docs/setup.rst +++ b/docs/setup.rst @@ -574,14 +574,13 @@ Sample config for nginx using proxy:: ## uncomment root directive if you want to serve static files by nginx ## requires static_files = false in .ini file #root /path/to/installation/rhodecode/public; - + include /etc/nginx/proxy.conf; location / { try_files $uri @rhode; } location @rhode { proxy_pass http://rc; - include /etc/nginx/proxy.conf; } }