nixos/services/nginx_vHosts/radicale.nix
2025-03-21 23:06:06 +01:00

30 lines
643 B
Nix

{
config,
lib,
...
}:
with lib;
let
radicale = config.services.radicale;
in
{
vHost =
if radicale.enable then
{
extraConfig = ''
location / {
proxy_pass http://127.0.0.1:5232/;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $host;
proxy_pass_header Authorization;
}
'';
}
else
{ };
}
.vHost