aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--container.scm12
1 files changed, 12 insertions, 0 deletions
diff --git a/container.scm b/container.scm
index 86c4d32..7597ccd 100644
--- a/container.scm
+++ b/container.scm
@@ -162,6 +162,18 @@
,(httpd-simple-wsgi-alias
koszko-org-website "/share/koszko-org-website/wsgi.py")))))
+(add-site-conf
+ (koszko-httpd-site-conf
+ (name-and-aliases '("ctftilde.koszko.org" "www.ctftilde.koszko.org"
+ "gemini.ctftilde.koszko.org"))
+ (body
+ `(,(httpd-directive 'DocumentRoot "/srv/http/koszko.org")
+
+ ,(httpd-directive 'Alias "/sideload" "/srv/http/koszko.org")
+
+ ,(httpd-simple-wsgi-alias
+ koszko-org-website "/share/koszko-org-website/wsgi.py")))))
+
(define %cgitrc-text
(g-string-join
`("css=/cgit-static/cgit.css"
scm (installer-program): Enable core dump generation. * gnu/installer/dump.scm (%core-dump): New variable. (prepare-dump): Copy the core dump file. * gnu/installer/newt/welcome.scm (run-welcome-page): Propose to report an installation that previously generated a core dump. Mathieu Othacehe 2022-08-08installer: Render the final configuration with (guix read-print)....* gnu/installer.scm (module-to-import?): Return #t for (guix read-print). * gnu/installer/steps.scm (configuration->file): Use 'pretty-print-with-comments/splice' instead of 'for-each' and 'pretty-print'. Ludovic Courtès