From 99f8c1188ccd1580f58ad4c21cece040ed8e874c Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Fri, 20 May 2022 17:24:52 -0600 Subject: Add RSS feed generator --- srv/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'srv/default.nix') 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}' ''; -- cgit v1.2.3