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

Side by Side Diff: modules/hgweb/files/nginx.conf

Issue 29323409: Issue 2867 - Introduce module hgweb and corresponding server role (Closed)
Patch Set: Issue 2867 - Fixes for issues discovered during test + merge with upstream Created Aug. 17, 2015, 10:50 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 add_header Strict-Transport-Security "max-age=2592000";
2
3 location / {
4 root /home/hg/web;
5 rewrite ^/customization/(.*) /abpcustomization/$1 permanent;
6 fastcgi_pass unix:/var/run/hgweb.sock;
7 include fastcgi_params;
8 fastcgi_param SCRIPT_NAME "";
9 }
10
11 location /static/ {
12 root /usr/share/mercurial/templates;
13 }
14
15 location /robots.txt {
16 root /home/hg/web;
17 }
OLDNEW

Powered by Google App Engine
This is Rietveld