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

Delta Between Two Patch Sets: modules/trac/templates/site.erb

Issue 5777328449781760: Concept for Trac as issue tracker. (Closed)
Left Patch Set: Created Feb. 25, 2014, 8:22 a.m.
Right Patch Set: Cleaned my working branch and adressed remarks from patch 3. Created March 6, 2014, 5:51 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « modules/trac/manifests/init.pp ('k') | modules/trac/templates/trac.ini.erb » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 server { 1 server {
2 server_name <%= @domain %>; 2 server_name <%= @domain %>;
3 <% if is_default %>
4 listen 80 default_server;
5 listen [::]:80 default_server;
6 <% else %>
7 listen 80;
8 listen [::]:80;
9 <% end %>
3 10
4 location / { 11 location /
5 proxy_pass http://localhost:8088/; 12 {
13 set $path_info $request_uri;
14 if ($path_info ~ "(.*?)\?")
15 {
16 set $path_info $1;
17 }
18
19 fastcgi_pass unix:/tmp/trac-fastcgi.sock;
20 include /etc/nginx/fastcgi_params;
21 fastcgi_param SCRIPT_NAME "";
22 fastcgi_param PATH_INFO $path_info;
23 }
24
25 location /chrome/
26 {
27 alias /home/trac/htdocs/htdocs/;
6 } 28 }
7 } 29 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld