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

nginx: berlin: Handle GWL manual URL.

* hydra/nginx/berlin.scm (%berlin-servers): Add /manual location for
workflows.guix.info.
This commit is contained in:
Ricardo Wurmus 2020-02-16 15:43:01 +01:00
parent 358c56cd94
commit a43e0d1ff7
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -551,6 +551,10 @@ PUBLISH-URL."
(uri "/.well-known")
(body (list "root /var/www;")))
(nginx-location-configuration
(uri "/manual")
(body (list "alias /srv/gwl-manual;")))
;; Pass requests to 'guix workflow --web-interface'.
(nginx-location-configuration
(uri "/")
@ -684,9 +688,13 @@ PUBLISH-URL."
(ssl-certificate-key (le "www.guixwl.org" 'key))
(root "/home/rekado/gwl/")
(locations
(list (nginx-location-configuration
(uri "/")
(body '("proxy_pass http://localhost:5000;")))))
(list
(nginx-location-configuration
(uri "/manual")
(body (list "alias /srv/gwl-manual;")))
(nginx-location-configuration
(uri "/")
(body '("proxy_pass http://localhost:5000;")))))
(raw-content
(append
%tls-settings