From 53ce5867c87c2b97d0991ad91002a9c16f93f76b Mon Sep 17 00:00:00 2001 From: oqyude Date: Sat, 20 Sep 2025 21:13:44 +0300 Subject: [PATCH] 123 --- nixosModules/server/nginx.nix | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/nixosModules/server/nginx.nix b/nixosModules/server/nginx.nix index 9c5408c..ee7be2b 100755 --- a/nixosModules/server/nginx.nix +++ b/nixosModules/server/nginx.nix @@ -27,10 +27,10 @@ } ]; }; - "localhost" = { - listen = [{ addr = "127.0.0.1"; port = 8890; }]; - }; "localhost:8890" = { + listen = [{ addr = "127.0.0.1"; port = 8080; }]; + }; + "localhost:8000" = { forceSSL = false; enableACME = false; listen = [ @@ -46,14 +46,6 @@ addr = "127.0.0.1"; port = 8890; } - { - addr = "0.0.0.0"; - port = 80; - } - { - addr = "0.0.0.0"; - port = 443; - } ]; }; # "localhost:9980" = {