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

Unified Diff: skfe/sys/skia_org_nginx

Issue 969533005: Add fiddle-staging (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 5 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skfe/sys/skia_org_nginx
diff --git a/skfe/sys/skia_org_nginx b/skfe/sys/skia_org_nginx
index 555f9b0f06c616c3ef48ce665ecf3edcd0a86cd2..aa5b25ddbd589aba2e5b7afa4174d6736f178fea 100644
--- a/skfe/sys/skia_org_nginx
+++ b/skfe/sys/skia_org_nginx
@@ -182,6 +182,23 @@ server {
return 301 https://fiddle.skia.org$request_uri;
}
+##### fiddle-staging.skia.org ###########################
+server {
+ listen 443;
+ server_name fiddle-staging.skia.org;
+
+ ssl on;
+
+ location / {
+ proxy_pass http://skia-webtry-test:8000;
+ }
+}
+server {
+ listen 80;
+ server_name fiddle-staging.skia.org;
+ return 301 https://fiddle-staging.skia.org$request_uri;
+}
+
#### health.skia.org ################
# Just return empty 200 responses for network load balancing health checks.
# See https://cloud.google.com/compute/docs/load-balancing/health-checks
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698