Skip to content

Commit

Permalink
Add gallery to nginx
Browse files Browse the repository at this point in the history
Forgot to add it here after adding it in
https://skia-review.googlesource.com/c/skia-public-config/+/212188/2/skia-ingress.yaml#43

Change-Id: I79930c0fb7152d010b74a91f7adfbdb33c441f4a
Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/212266
Reviewed-by: Kevin Lubick <[email protected]>
  • Loading branch information
kjlubick committed May 6, 2019
1 parent 4419550 commit 5dc5ee0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions skfe/sys/skia_org_nginx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,27 @@ server {
return 301 https://contest.skia.org$request_uri;
}

##### gallery.skia.org ###########################
server {
listen 443;
server_name gallery.skia.org;

ssl on;

access_log /var/log/nginx/gallery.access.log;
error_log /var/log/nginx/gallery.error.log error;

location / {
proxy_pass https://35.201.76.220;
proxy_set_header Host $host;
}
}
server {
listen 80;
server_name gallery.skia.org;
return 301 https://gallery.skia.org$request_uri;
}

##### perf.skia.org ###########################
server {
listen 443;
Expand Down

0 comments on commit 5dc5ee0

Please sign in to comment.