Reopen some services to WAN

This commit is contained in:
2025-05-22 09:49:28 -05:00
parent b27d748e30
commit fc3979e64b
2 changed files with 17 additions and 4 deletions

View File

@ -23,7 +23,7 @@
};
gitea = {
image = "docker.io/gitea/gitea:1.23.0-rc0-rootless";
image = "docker.io/gitea/gitea:1.24.0-rc0-rootless";
volumes = [ "/home/sezycei/srv/containerdata/gitea/data:/var/lib/gitea"
"/home/sezycei/srv/containerdata/gitea/config:/etc/gitea"
];
@ -146,7 +146,7 @@
};
vaultwarden = {
image = "vaultwarden/server:1.32.7";
image = "vaultwarden/server:1.33.2";
ports = [ "40080:80" ];
volumes = [
"/home/sezycei/srv/containerdata/bitwarden/data:/data"

View File

@ -68,6 +68,19 @@
root = "/var/www/graf.matri.cx";
extraConfig = allowedLANAddrs;
};
"home.matri.cx" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://192.168.0.131:8123";
proxyWebsockets = true;
extraConfig = ''
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
'';
};
extraConfig = allowedLANAddrs;
};
"hydra.matri.cx" = proxiedLAN {
target = "http://127.0.0.1:3034";
extra = ''
@ -76,9 +89,9 @@
};
"jame.su" = static { dir = "/var/www/jame.su"; };
"matri.cx" = static { dir = "/var/www/matri.cx"; };
"media.matri.cx" = proxiedLAN { target = "http://127.0.0.1:8096"; };
"media.matri.cx" = proxied { target = "http://127.0.0.1:8096"; };
"purr.eversole.co" = proxied { target = "http://127.0.0.1:5195"; };
"pw.eversole.co" = proxiedLAN { target = "http://127.0.0.1:40080"; };
"pw.eversole.co" = proxied { target = "http://127.0.0.1:40080"; };
"sezycei.com" = static { dir = "/var/www/sezycei.com"; };
"snakebelmont.com" = static { dir = "/var/www/snakebelmont.com"; };
"transmission.matri.cx" = proxiedLAN { target = "http://127.0.0.1:9091"; };