Modularized nginx config.

This commit is contained in:
Kevin Baensch 2019-06-22 23:58:08 +02:00
parent ea53feeb74
commit 1c62f3201e
9 changed files with 218 additions and 168 deletions

View file

@ -0,0 +1,17 @@
{ 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 $http_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