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/breezewiki.nix

33 lines
826 B
Nix
Raw Normal View History

2024-05-29 17:15:20 +02:00
{ pkgs, config, ... }: {
virtualisation.oci-containers.containers = {
breezewiki = {
image = "quay.io/pussthecatorg/breezewiki:latest";
ports = [
"1584:10416"
];
# Todo fix since it doesnt work (required by default)
environment = {
CANONICAL_ORIGIN = "https://breezewiki.${config.networking.domain}";
canonical_origin = "https://breezewiki.${config.networking.domain}";
};
2024-05-29 17:15:20 +02:00
};
};
services.nginx = {
virtualHosts = {
"breezewiki.${config.networking.domain}" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = " http://127.0.0.1:1584";
extraConfig = ''
access_log /var/log/nginx/$server_name-access.log json_analytics;
'';
2024-05-29 17:15:20 +02:00
};
};
};
};
}