##// END OF EJS Templates
templates: use safer way to extract user_agent from request....
templates: use safer way to extract user_agent from request. Several reports were that user_agent was None causing a 500 while rendering template

File last commit:

r634:fc067e08 default
r2094:5efe3020 default
Show More
nginx-url-prefix.rst
36 lines | 902 B | text/x-rst | RstLexer
/ docs / admin / nginx-url-prefix.rst

Nginx URL Prefix Configuration

Use the following example to configure Nginx to use a URL prefix.

location  /foo {
  rewrite /foo(.*) /$1  break;
  proxy_pass         http://localhost:3200;
  proxy_redirect     off;
  proxy_set_header   Host $host;
}

In addition to the Nginx configuration you will need to add the following lines (if they not exist) into the rhodecode.ini file.

  • Above [app:main] section of the rhodecode.ini file add the following section if it doesn't exist yet.
[filter:proxy-prefix]
use = egg:PasteDeploy#prefix
prefix = /<someprefix> # Change <someprefix> into your chosen prefix
  • In the the [app:main] section of your rhodecode.ini file add the following line.
filter-with = proxy-prefix