diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-05-20 17:24:52 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-05-20 17:24:52 -0600 |
commit | 99f8c1188ccd1580f58ad4c21cece040ed8e874c (patch) | |
tree | 1c4389da9129a9e7201ae6d4ad00e48c15e55170 /srv/default.nix | |
parent | b4ca8853a9085cb0231f2c4de25a1ec07ef150a0 (diff) |
Add RSS feed generator
Diffstat (limited to 'srv/default.nix')
-rw-r--r-- | srv/default.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/srv/default.nix b/srv/default.nix index 7ca70e8..2f7d58c 100644 --- a/srv/default.nix +++ b/srv/default.nix @@ -16,7 +16,7 @@ # mailing list export MEDIOCRE_BLOG_ML_SMTP_ADDR="${config.mlSMTPAddr}" export MEDIOCRE_BLOG_ML_SMTP_AUTH="${config.mlSMTPAuth}" - export MEDIOCRE_BLOG_ML_PUBLIC_URL="${config.mlPublicURL}" + export MEDIOCRE_BLOG_ML_PUBLIC_URL="${config.publicURL}" # redis export MEDIOCRE_BLOG_REDIS_PROTO=unix @@ -26,8 +26,9 @@ export MEDIOCRE_BLOG_POW_SECRET="${config.powSecret}" # http - export MEDIOCRE_BLOG_LISTEN_PROTO="${config.httpListenProto}" - export MEDIOCRE_BLOG_LISTEN_ADDR="${config.httpListenAddr}" + export MEDIOCRE_BLOG_HTTP_PUBLIC_URL="${config.publicURL}" + export MEDIOCRE_BLOG_HTTP_LISTEN_PROTO="${config.httpListenProto}" + export MEDIOCRE_BLOG_HTTP_LISTEN_ADDR="${config.httpListenAddr}" export MEDIOCRE_BLOG_HTTP_AUTH_USERS='${builtins.toJSON config.httpAuthUsers}' export MEDIOCRE_BLOG_HTTP_AUTH_RATELIMIT='${config.httpAuthRatelimit}' ''; |