This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/hosts/carbon/services/privacy/anonymousoverflow.nix

29 lines
645 B
Nix

{ pkgs, config, ... }: {
virtualisation.oci-containers.containers = {
anonymousoverflow = {
image = "ghcr.io/httpjamesm/anonymousoverflow:release";
ports = [
"7344:8080"
];
environment = {
APP_URL = "https://anonymousoverflow.4o1x5.dev";
JWT_SIGNING_SECRET = "${config.age.secrets.anonymousoverflow.path}";
};
};
};
services.nginx = {
virtualHosts = {
"anonymousoverflow.${config.networking.domain}" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = " http://127.0.0.1:7344";
};
};
};
};
}