restreamer setup

This commit is contained in:
m3tam3re
2025-03-15 14:23:47 +01:00
parent 779473317d
commit e93bdf20a3
6 changed files with 50 additions and 49 deletions

View File

@ -11,7 +11,7 @@
MYSQL_DATABASE = "matomo";
PHP_MEMORY_LIMIT = "2048M";
};
extraOptions = ["--add-host=mysql:10.89.0.1" "--ip=10.89.0.15" "--network=web"];
extraOptions = ["--add-host=mysql:10.89.0.1" "--ip=10.89.0.16" "--network=web"];
};
# Traefik configuration specific to ghost
services.traefik.dynamicConfigOptions.http = {
@ -21,13 +21,23 @@
}
];
routers.matomo = {
rule = "Host(`stats.nemoti.com`)";
tls = {
certResolver = "godaddy";
routers = {
matomo-nemoti = {
rule = "Host(`stats.nemoti.com`)";
tls = {
certResolver = "godaddy";
};
service = "matomo";
entrypoints = "websecure";
};
matomo-m3tam3re = {
rule = "Host(`stats.m3tam3re.com`)";
tls = {
certResolver = "godaddy";
};
service = "matomo";
entrypoints = "websecure";
};
service = "matomo";
entrypoints = "websecure";
};
};
}