From 7b805a270b7795dd758dfc9b5a88db662f21d09d Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Thu, 18 Sep 2025 15:45:52 -0600 Subject: [PATCH] vps: fix addresses on isso module --- sys/platforms/vps/srv/isso.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/platforms/vps/srv/isso.nix b/sys/platforms/vps/srv/isso.nix index e845c2f..d09953e 100644 --- a/sys/platforms/vps/srv/isso.nix +++ b/sys/platforms/vps/srv/isso.nix @@ -14,7 +14,7 @@ with lib; { proxy_headers_hash_bucket_size 128; ''; locations."/" = { - proxyPass = "http://[::1]:8099"; + proxyPass = "http://127.0.0.1:8888/"; }; }; }; @@ -23,7 +23,7 @@ with lib; { enable = true; settings = { general = { - host = "http://isso.posixlycorrect.com"; + host = "http://posixlycorrect.com"; dbpath = "/var/lib/isso/comments.db"; notify = "stdout"; }; @@ -33,7 +33,7 @@ with lib; { purge-after = "365d"; }; server = { - listen = "http://[::1]:8099"; + listen = "http://127.0.0.1:8888/"; }; guard = { require-author = true;