nixos-config/machines/orbi/service-wastebin.nix

28 lines
589 B
Nix
Raw Normal View History

2024-07-22 00:19:08 +02:00
{ pkgs, ... }:
let
port = 9001;
in
{
services.wastebin = {
enable = true;
settings = {
WASTEBIN_ADDRESS_PORT = "127.0.0.1:${toString port}";
WASTEBIN_TITLE = "paste.ingolf-wagner.de";
WASTEBIN_MAX_PASTE_EXPIRATION = 60 * 60 * 24 * 30;
};
};
services.nginx = {
enable = true;
2024-08-29 03:26:04 +02:00
virtualHosts."paste.ingolf-wagner.de" = {
2024-07-22 00:19:08 +02:00
forceSSL = true;
enableACME = true;
locations."/" = {
recommendedProxySettings = true;
proxyWebsockets = true;
proxyPass = "http://127.0.0.1:${toString port}";
};
};
};
}