diff options
| author | tv <tv@krebsco.de> | 2023-08-01 12:14:30 +0200 |
|---|---|---|
| committer | tv <tv@krebsco.de> | 2023-08-01 12:14:30 +0200 |
| commit | 7be9bfdc55d672de39dce98dae9c6d112404dfc6 (patch) | |
| tree | e89a93ad96e6f35490ffbf6b6a337ca4dcc9a170 /makefu/2configs/nginx/euer.mon.nix | |
| parent | 5d1b0675cf179f863a5b34b67661a953197b6057 (diff) | |
| parent | 6e63efa3645353bc0549f5f152ef811fff5d644c (diff) | |
Merge remote-tracking branch 'orange/master'
Diffstat (limited to 'makefu/2configs/nginx/euer.mon.nix')
| -rw-r--r-- | makefu/2configs/nginx/euer.mon.nix | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/makefu/2configs/nginx/euer.mon.nix b/makefu/2configs/nginx/euer.mon.nix deleted file mode 100644 index c9db15b73..000000000 --- a/makefu/2configs/nginx/euer.mon.nix +++ /dev/null @@ -1,42 +0,0 @@ -{ config, lib, pkgs, ... }: - -with import <stockholm/lib>; -let - hostname = config.krebs.build.host.name; - user = config.services.nginx.user; - group = config.services.nginx.group; - external-ip = config.krebs.build.host.nets.internet.ip4.addr; - internal-ip = config.krebs.build.host.nets.retiolum.ip4.addr; -in { - services.nginx = { - enable = mkDefault true; - virtualHosts."mon.euer.krebsco.de" = let - # flesh_wrap - authFile = pkgs.writeText "influx.conf" '' - user:$apr1$ZG9oQCum$FhtIe/cl3jf8Sa4zq/BWd1 - ''; - in { - forceSSL = true; - enableACME = true; - locations."/" = { - proxyPass = "http://wbob.r:3000/"; - extraConfig = '' - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - ''; - }; - locations."/influxdb/" = { - proxyPass = "http://wbob.r:8086/"; - extraConfig = '' - auth_basic "Needs Autherization to visit"; - auth_basic_user_file ${authFile}; - proxy_http_version 1.1; - proxy_set_header Host $host; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_redirect off; - ''; - }; - }; - }; -} |
