{ config, ... }: let rootDomain = config.networking.domain; bensIp = "24.140.84.23"; in { services = { nginx = { enable = true; recommendedGzipSettings = true; recommendedOptimisation = true; recommendedProxySettings = true; recommendedTlsSettings = true; group = "users"; virtualHosts = { ${rootDomain} = { locations."/".root = "/srv/www/"; # serve /~$USER paths locations."~ ^/~(.+?)(/.*)?$" = { alias = "/home/$1/public_html$2"; index = "index.html index.htm"; extraConfig = '' autoindex on; ''; }; forceSSL = true; enableACME = true; }; "bsima.me" = { locations."/" = { root = "/home/ben/public_html/"; index = "index.html index.htm"; extraConfig = '' autoindex on; ''; }; serverAliases = [ "www.bsima.me" ]; forceSSL = true; useACMEHost = rootDomain; }; "hoogle.${rootDomain}" = { locations."/".proxyPass = "http://${bensIp}:8008"; forceSSL = true; useACMEHost = rootDomain; }; "tv.${rootDomain}" = { locations."/".proxyPass = "http://${bensIp}:8096"; # emby runs on port 8096 forceSSL = true; useACMEHost = rootDomain; }; "devalloc.io" = { locations."/".proxyPass = "http://${bensIp}:8095"; forceSSL = true; useACMEHost = rootDomain; }; "dandel-rovbur.${rootDomain}" = { locations."/".proxyPass = "http://${bensIp}:8080"; forceSSL = true; useACMEHost = rootDomain; }; "sabten.${rootDomain}" = { locations."/".proxyPass = "http://localhost:8080"; forceSSL = true; useACMEHost = rootDomain; }; # Jupyter is currently disabled on Biz.Dev #"notebook.simatime.com".locations = { # "/" = { # proxyPass = "http://${bensIp}:3099"; # proxyWebsockets = true; # extraConfig = '' # proxy_buffering off; # proxy_read_timeout 86400; # ''; # }; # "/(api/kernels/[^/]+/channels|terminals/websocket)/" = { # proxyPass = "http://${bensIp}:3099"; # proxyWebsockets = true; # }; #}; }; }; }; # This must contain all of the other domains we host security.acme.certs.${rootDomain}.extraDomainNames = [ "bsima.me" "www.bsima.me" "tv.${rootDomain}" "devalloc.io" "matrix.${rootDomain}" "chat.${rootDomain}" "hoogle.${rootDomain}" "dandel-rovbur.${rootDomain}" "sabten.${rootDomain}" ];# }