38 lines
896 B
Nix
Raw Normal View History

2025-01-15 18:19:03 +01:00
{
services.wastebin = {
enable = true;
settings = {
WASTEBIN_TITLE = "m3tam3re's wastebin";
2025-04-18 15:59:06 +02:00
WASTEBIN_BASE_URL = "https://bin.m3ta.dev";
2025-01-15 18:19:03 +01:00
WASTEBIN_ADDRESS_PORT = "0.0.0.0:3003";
2025-02-28 09:55:27 +01:00
WASTEBIN_MAX_BODY_SIZE = 1048576;
2025-01-15 18:19:03 +01:00
};
};
# Traefik configuration specific to wastebin
services.traefik.dynamicConfigOptions.http = {
services.wastebin.loadBalancer.servers = [
{
url = "http://localhost:3003/";
}
];
routers.wastebin = {
2025-04-18 15:59:06 +02:00
rule = "Host(`bin.m3ta.dev`)";
tls = {
certResolver = "godaddy";
};
service = "wastebin";
entrypoints = "websecure";
};
routers.wastebin-old = {
2025-01-15 18:19:03 +01:00
rule = "Host(`bin.m3tam3re.com`)";
tls = {
certResolver = "godaddy";
};
service = "wastebin";
entrypoints = "websecure";
2025-04-18 15:59:06 +02:00
middlewares = ["subdomain-redirect"];
2025-01-15 18:19:03 +01:00
};
};
}