Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(458)

Unified Diff: skfe/sys/skia_org

Issue 819473004: Set up the nginx servers for handling *.skia.org traffic. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « skfe/sys/nginx_monit ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skfe/sys/skia_org
diff --git a/skfe/sys/skia_org b/skfe/sys/skia_org
new file mode 100644
index 0000000000000000000000000000000000000000..3922f3d862126ec494f0ffe1bb4e5c2cbe911b18
--- /dev/null
+++ b/skfe/sys/skia_org
@@ -0,0 +1,84 @@
+server {
+ listen 80;
+ server_name skiadev.org www.skiadev.org;
tfarina 2015/01/10 18:28:52 do we need access_log and error_log?
jcgregorio 2015/01/12 12:25:03 The default behavior is fine.
+
tfarina 2015/01/10 18:28:52 where is the ssl protection configuration? I know
jcgregorio 2015/01/12 12:25:03 SSL config will be done later once these servers s
+ proxy_connect_timeout 5m;
+ proxy_send_timeout 5m;
+ proxy_read_timeout 5m;
+ send_timeout 5m;
+
+ location / {
+ proxy_pass http://skia-docs:8000;
+ }
+}
+
+server {
+ listen 80;
+ server_name perf.skiadev.org;
+
+ proxy_connect_timeout 5m;
+ proxy_send_timeout 5m;
+ proxy_read_timeout 5m;
+ send_timeout 5m;
+
+ location / {
+ proxy_pass http://skia-testing-b:8000;
+ }
+}
+
+server {
+ listen 80;
+ server_name gold.skiadev.org;
+
+ proxy_connect_timeout 5m;
+ proxy_send_timeout 5m;
+ proxy_read_timeout 5m;
+ send_timeout 5m;
+
+ location / {
+ proxy_pass http://skia-testing-b:8001;
+ }
+}
+
+server {
+ listen 80;
+ server_name alerts.skiadev.org;
+
+ proxy_connect_timeout 5m;
+ proxy_send_timeout 5m;
+ proxy_read_timeout 5m;
+ send_timeout 5m;
+
+ location / {
+ proxy_pass http://skia-monitoring:8001;
+ }
+}
+
+server {
+ listen 80;
+ server_name monitor.skiadev.org;
+
+ proxy_connect_timeout 5m;
+ proxy_send_timeout 5m;
+ proxy_read_timeout 5m;
+ send_timeout 5m;
+
+ location / {
+ proxy_pass http://skia-monitoring:8000;
+ }
+}
+
+server {
+ listen 80;
+ server_name push.skiadev.org;
+
+ proxy_connect_timeout 5m;
+ proxy_send_timeout 5m;
+ proxy_read_timeout 5m;
+ send_timeout 5m;
+
+ location / {
+ proxy_pass http://skia-push:8000;
+ }
+}
+
« no previous file with comments | « skfe/sys/nginx_monit ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698