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

Unified Diff: skfe/sys/skia_org_nginx

Issue 1314133003: internal: setup skfe internal.skia.org (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: clean Created 5 years, 4 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 51d86424e3e18c685adbd258f1331396a25b12f5..280c3723b61b4acc174184a08fc0eba90c703707 100644
--- a/skfe/sys/skia_org_nginx
+++ b/skfe/sys/skia_org_nginx
@@ -447,6 +447,29 @@ server {
proxy_pass http://skia-bugchomper:8050;
}
}
+
+##### internal.skia.org ###########################
+server {
+ listen 443;
+ server_name internal.skia.org;
+
+ access_log /var/log/nginx/internal.access.log;
+ error_log /var/log/nginx/internal.error.log error;
+
+ ssl on;
+
+ location / {
+ proxy_pass http://skia-internal:8000;
+ }
+}
+
+server {
+ listen 80;
+ server_name internal.skia.org;
+ return 301 https://internal.skia.org$request_uri;
+}
+
+
server {
listen 80;
server_name bugchomper.skia.org;
« 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