From cee5bbd28d06699f1e4c3b461ff361f9d377f775 Mon Sep 17 00:00:00 2001 From: Luna Date: Fri, 25 Oct 2024 21:31:27 -0400 Subject: [PATCH] Update server/nginx.nix --- server/nginx.nix | 71 ++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 60 insertions(+), 11 deletions(-) diff --git a/server/nginx.nix b/server/nginx.nix index 1b7249e..d32e866 100644 --- a/server/nginx.nix +++ b/server/nginx.nix @@ -1,26 +1,75 @@ -{pkgs, ...}: { +{ pkgs, ... }: { services.nginx = { enable = true; - package = (pkgs.nginx.override { + package = pkgs.nginx.override { modules = with pkgs.nginxModules; [ rtmp ]; - }); + }; recommendedTlsSettings = true; recommendedOptimisation = true; recommendedGzipSettings = true; recommendedProxySettings = true; + virtualHosts = { - "lunamoonlight.xyz" = { + "www.lunamoonlight.xyz" = { enableACME = true; addSSL = true; root = "/var/www/lunalanding"; - }; - }; - }; + }; - # Open HTTP and HTTPs ports + # Nextcloud Proxy + "nextcloud.lunamoonlight.xyz" = { + enableACME = true; + addSSL = true; + locations."/" = { + proxyWebsockets = true; + extraConfig = '' + location /.well-known/carddav { + return 301 $scheme://$host/remote.php/dav; + } + location /.well-known/caldav { + return 301 $scheme://$host/remote.php/dav; + } + ''; + }; + }; + }; + + appendConfig = '' + rtmp { + server { + listen 1935; + chunk_size 4096; + allow publish all; + application stream { + record off; + live on; + allow play all; + } + } + } + ''; + }; + + # Nextcloud server + services.nextcloud = { + enable = true; + package = pkgs.nextcloud29; + hostName = "nextcloud.lunamoonlight.xyz"; + datadir = "/mnt/nextcloud"; + https = true; + config = { + adminuser = "luna"; + adminpassFile = "/mnt/nextcloud/password.txt"; + }; + settings = { + trusted_proxies = [ "127.0.0.1" ]; + trusted_domains = [ "nextcloud.lunamoonlight.xyz" ]; + overwriteprotocol = "https"; + }; + }; + + # Open HTTP and HTTPS ports networking.firewall = { - allowedTCPPorts = [ - 80 443 - ]; + allowedTCPPorts = [ 80 443 ]; }; }