diff options
author | EuAndreh <eu@euandre.org> | 2021-02-19 11:24:54 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-02-19 11:33:25 -0300 |
commit | 8456d87b08ec9f552892bd70688a9e8ad7a776b7 (patch) | |
tree | 3cda39c4032436a7ddefd88b6c330979f3e95dcf /vps.scm | |
parent | vps.scm: Remove generage-ci-html (diff) | |
download | server-8456d87b08ec9f552892bd70688a9e8ad7a776b7.tar.gz server-8456d87b08ec9f552892bd70688a9e8ad7a776b7.tar.xz |
Update aux/guix/pinned-channels.scm
Diffstat (limited to 'vps.scm')
-rw-r--r-- | vps.scm | 13 |
1 files changed, 3 insertions, 10 deletions
@@ -164,9 +164,6 @@ (define git-domain-prefix "git") (define git-domain (string-append git-domain-prefix "." tld)) -(define ci-domain-prefix "ci") -(define ci-domain (string-append ci-domain-prefix "." tld)) - ;; OS configuration @@ -200,7 +197,6 @@ pki " mail-domain " key \"" (tls-priv-for mail-domain) "\""))) (define tls-prefixes (list mail-domain-prefix - ci-domain-prefix git-domain-prefix "chat")) @@ -285,10 +281,8 @@ pki " mail-domain " key \"" (tls-priv-for mail-domain) "\""))) (service nginx-service-type (nginx-configuration (server-blocks - (append - (list - (static-nginx-config (list ci-domain) "/srv/ci")) - static-projects-nginx-config)))) + (append (list) + static-projects-nginx-config)))) (service certbot-service-type (certbot-configuration (email (string-append certbot-alias "@" tld)) @@ -343,8 +337,7 @@ pki " mail-domain " key \"" (tls-priv-for mail-domain) "\""))) (mkdir-p p) (chmod p #o755)) '("/srv/http" - "/srv/git" - "/srv/ci")))) + "/srv/git")))) (modify-services %base-services (guix-service-type |