2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/maintenance.git synced 2023-12-14 03:33:04 +01:00

hydra: bayfront: Add logs.guix.gnu.org.

* hydra/modules/sysadmin/dns.scm (guix.gnu.org.zone): Point "logs" to
bayfront.
* hydra/nginx/bayfront.conf: Add server block for logs.guix.gnu.org.
This commit is contained in:
Ricardo Wurmus 2019-06-26 15:41:21 +02:00
parent fb860c24bf
commit 2a4ca35ba4
No known key found for this signature in database
GPG key ID: 197A5888235FACAC
2 changed files with 10 additions and 0 deletions

View file

@ -90,6 +90,7 @@
;; Services.
("issues" "" "IN" "A" berlin-ip4)
("issues" "" "IN" "AAAA" berlin-ip6)
("logs" "" "IN" "A" bayfront-ip4)
;; charlie-distribution. See: cdn/terraform/cloudfront.tf.
("ci" "" "IN" "CNAME" "d1aw3orh0yrgph.cloudfront.net.")

View file

@ -114,6 +114,15 @@ http {
}
}
server {
listen 80;
server_name logs.guix.gnu.org;
access_log /var/log/nginx/logs.access.log;
location = / {
proxy_pass http://localhost:3333/;
}
}
# HTTPS server.
server {
listen 443 ssl;