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

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: readme Created 5 years, 12 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
« compute_engine_scripts/skfe/vm_create_instance.sh ('K') | « 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..fe99605aac3738b507fbd2d1c3e528a4db74ea48
--- /dev/null
+++ b/skfe/sys/skia_org
@@ -0,0 +1,57 @@
+server {
+ listen 80;
+ server_name skiadev.org www.skiadev.org;
+
+ 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;
+ }
+}
+
« compute_engine_scripts/skfe/vm_create_instance.sh ('K') | « skfe/sys/nginx_monit ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698