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

Side by Side Diff: modules/adblockplus/files/nginx/buildmaster.conf

Issue 29325436: Issue 1281 - Introduce module buildbot (Closed)
Patch Set: Issue 1281 - Address review feedback Created Oct. 20, 2015, 8:35 p.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
1 # Forward requests to the local builbot master
Felix Dahlke 2015/11/19 19:50:00 Am I missing something, or does modules/adblockplu
mathias 2016/01/20 16:13:51 It seems like an entity in the review-tool-chain (
1 location / 2 location /
2 { 3 {
3 proxy_pass http://localhost:8080/; 4 proxy_pass http://127.0.0.1:8010/;
4 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 5 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
5 proxy_set_header X-Real-IP $remote_addr; 6 proxy_set_header X-Real-IP $remote_addr;
6 proxy_set_header X-Forwarded-Proto $scheme; 7 proxy_set_header X-Forwarded-Proto $scheme;
7 proxy_set_header Host $http_host; 8 proxy_set_header Host $http_host;
8 } 9 }
10
OLDNEW

Powered by Google App Engine
This is Rietveld