From b6cbe22d7aab4662c586646d913badd3aaf8835d Mon Sep 17 00:00:00 2001 From: Nathan Anderson Date: Mon, 18 Mar 2024 14:14:19 -0600 Subject: [PATCH] Fix for headless --- shared/server-configuration.nix | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/shared/server-configuration.nix b/shared/server-configuration.nix index ffc575f..522f150 100644 --- a/shared/server-configuration.nix +++ b/shared/server-configuration.nix @@ -113,6 +113,7 @@ in openDefaultPorts = true; group = "users"; relay.enable = false; + guiAddress = "0.0.0.0:8384"; # settings = { # devices = { # # "supernote" = { id = "DEVICE-ID-GOES-HERE"; }; @@ -135,19 +136,6 @@ in # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ]; - services.nginx = { - enable = true; - recommendedProxySettings = true; - # recommendedTlsSettings = true; - # other Nginx options - virtualHosts."http://127.0.0.1" = { - # enableACME = true; - # forceSSL = true; - locations."/" = { - proxyPass = "http://127.0.0.1:8384"; - }; - }; - }; system.stateVersion = "23.11"; # Did you read the comment? }; }