| Index: modules/trac/files/site.conf |
| =================================================================== |
| --- a/modules/trac/files/site.conf |
| +++ b/modules/trac/files/site.conf |
| @@ -7,7 +7,22 @@ |
| client_max_body_size 20m; |
| } |
| -location /chrome/ |
| +location /chrome |
|
Wladimir Palant
2014/07/22 13:52:24
Please keep the trailing slash for the location he
mathias
2014/07/24 16:36:49
I tried that, it does not seem to work with a dual
|
| { |
| alias /home/trac/htdocs/htdocs/; |
| } |
| + |
| +location /orders |
| +{ |
| + fastcgi_pass unix:/tmp/orders-fastcgi.sock; |
| + fastcgi_split_path_info ^/(orders)(.*)$; |
|
Wladimir Palant
2014/07/22 13:52:24
^(/orders)(.*)$ please - the slash is part of the
|
| + include /etc/nginx/fastcgi_params; |
| + fastcgi_param SCRIPT_NAME /orders; |
|
Wladimir Palant
2014/07/22 13:52:24
This should be unnecessary if the issue above is f
|
| + fastcgi_param PATH_INFO $fastcgi_path_info; |
| + client_max_body_size 20m; |
| +} |
| + |
| +location /orders/chrome |
| +{ |
| + alias /home/trac/htdocs/htdocs/; |
| +} |