diff --git a/services/default.nix b/services/default.nix index d21a6c4..702ed34 100644 --- a/services/default.nix +++ b/services/default.nix @@ -9,5 +9,6 @@ ./iceshrimp.nix ./akkoma.nix ./akkoma-media.nix + ./trackmap.nix ]; } diff --git a/services/trackmap.nix b/services/trackmap.nix new file mode 100644 index 0000000..79a1c92 --- /dev/null +++ b/services/trackmap.nix @@ -0,0 +1,17 @@ +{ + # Reqeusts SSL and adds the site to nginx + services.nginx.virtualHosts."trackmap.hermitcollective.net" = { + forceSSL = true; + enableACME = true; + locations."/" = { + proxyPass = "http://192.168.178.140:8029/"; + proxyWebsockets = true; # needed if you need to use WebSocket + extraConfig = + # required when the target is also TLS server with multiple hosts + "proxy_ssl_server_name on;" + + # required when the server wants to use HTTP Authentication + "proxy_pass_header Authorization;" + ; + }; + }; +}