1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

makanek: host online scrabble

This commit is contained in:
2024-09-08 19:14:30 +02:00
parent 6908b75571
commit bfa2b1e9b1
2 changed files with 21 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ in {
./names.nix
./nextcloud.nix
./radio-news.nix
./scrabble.nix
# ./onlyoffice.nix
./retiolum-map.nix
./tarot.nix

View File

@@ -0,0 +1,20 @@
let
port = 9090;
in
{
virtualisation.oci-containers = {
backend = "podman";
containers.xanado = {
volumes = [ ];
ports = [ "${toString port}:9093" ];
environment.TZ = "Europe/Berlin";
image = "ghcr.io/cdot/xanado:v3.1.6";
};
};
services.nginx.virtualHosts."scrabble.kmein.de" = {
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://localhost:${toString port}";
};
}