23 lines
542 B
Nix
23 lines
542 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
{
|
|
vHost =
|
|
if config.services.hydra.enable
|
|
then {
|
|
extraConfig = ''
|
|
location / {
|
|
proxy_pass http://${config.services.hydra.listenHost}:${toString config.services.hydra.port};
|
|
proxy_set_header Host $host;
|
|
proxy_set_header REMOTE_ADDR $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto https;
|
|
}
|
|
'';
|
|
}
|
|
else {};
|
|
}
|
|
.vHost
|