26 lines
463 B
Nix
26 lines
463 B
Nix
|
{ pkgs, config, ... }: {
|
||
|
|
||
|
virtualisation.oci-containers.containers = {
|
||
|
|
||
|
breezewiki = {
|
||
|
image = "quay.io/pussthecatorg/breezewiki:latest";
|
||
|
ports = [
|
||
|
"1584:10416"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
services.nginx = {
|
||
|
virtualHosts = {
|
||
|
|
||
|
"breezewiki.${config.networking.domain}" = {
|
||
|
forceSSL = true;
|
||
|
enableACME = true;
|
||
|
locations."/" = {
|
||
|
proxyPass = " http://127.0.0.1:1584";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|