nix-infra/config/hosts/public-web-static/virtualHosts/historic-easterhegg/eh05.easterhegg.eu.nix

57 lines
1.2 KiB
Nix
Raw Normal View History

{ pkgs, ... }:
let
eh05 = builtins.fetchGit {
url = "forgejo@git.hamburg.ccc.de:CCCHH/easterhegg-2005-website.git";
ref = "main";
rev = "ef633b2cf45d72205c840935e036c16b57517e8b";
};
in
{
services.nginx.virtualHosts = {
"acme-eh05.easterhegg.eu" = {
enableACME = true;
serverName = "eh05.easterhegg.eu";
listen = [
{
addr = "0.0.0.0";
port = 31820;
}
];
};
"eh05.easterhegg.eu" = {
forceSSL = true;
useACMEHost = "eh05.easterhegg.eu";
listen = [
{
addr = "0.0.0.0";
port = 8443;
ssl = true;
proxyProtocol = true;
}
];
root = pkgs.buildEnv {
name = "eh05";
paths = [
eh05
];
};
extraConfig = ''
# Make use of the ngx_http_realip_module to set the $remote_addr and
# $remote_port to the client address and client port, when using proxy
# protocol.
# First set our proxy protocol proxy as trusted.
set_real_ip_from 172.31.17.140;
# Then tell the realip_module to get the addreses from the proxy protocol
# header.
real_ip_header proxy_protocol;
'';
};
};
}