This is an automated email from the git hooks/post-receive script.
civodul pushed a commit to branch master
in repository maintenance.
The following commit(s) were added to refs/heads/master by this push:
new 97cbea0 hydra: nginx: Add missing semicolons.
97cbea0 is described below
commit 97cbea05bfc53e8d3fba1d2e1455dda8237eb3c0
Author: Ludovic Courtès <[email protected]>
AuthorDate: Wed Jan 4 23:07:07 2023 +0100
hydra: nginx: Add missing semicolons.
* hydra/modules/sysadmin/nginx.scm (guix.gnu.org-other-locations): Add
missing semicolons.
---
hydra/modules/sysadmin/nginx.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hydra/modules/sysadmin/nginx.scm b/hydra/modules/sysadmin/nginx.scm
index 271715b..e6eaf06 100644
--- a/hydra/modules/sysadmin/nginx.scm
+++ b/hydra/modules/sysadmin/nginx.scm
@@ -704,12 +704,12 @@ synonymous IETF language tags that should be mapped to
the same $lang."
(nginx-location-configuration
(uri "= /packages.json")
(body (list "if_modified_since exact;"
- "root /srv/package-metadata")))
+ "root /srv/package-metadata;")))
(nginx-location-configuration
(uri "= /sources.json")
(body (list "if_modified_since exact;"
- "root /srv/package-metadata")))
+ "root /srv/package-metadata;")))
(nginx-location-configuration ;certbot
(uri "/.well-known")