Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/trac/files/site.conf

Issue 5735669590654976: #753 - set up an order system to let eyeo employees file order requests (Closed)
Patch Set: #753 - set up an order system to let eyeo employees file order requests Created July 22, 2014, 12:47 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
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/;
+}

Powered by Google App Engine
This is Rietveld