10 lines
223 B
Nix
10 lines
223 B
Nix
{config, ...}: {
|
|
services.nginx.virtualHosts."wallabag.vulpecula.zone" = {
|
|
addSSL = true;
|
|
enableACME = true;
|
|
locations."/".proxyPass = "http://localhost:62106";
|
|
};
|
|
|
|
# wallabag is managed through docker.
|
|
}
|