Trackmap :3

Main
hermitcollective.net 2024-08-26 16:31:18 +00:00
parent 1a21acc8ee
commit 14265fb238
2 changed files with 18 additions and 0 deletions

View File

@ -9,5 +9,6 @@
./iceshrimp.nix
./akkoma.nix
./akkoma-media.nix
./trackmap.nix
];
}

17
services/trackmap.nix Normal file
View File

@ -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;"
;
};
};
}