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

57 lines
1.2 KiB
Nix

{ pkgs, ... }:
let
eh11 = builtins.fetchGit {
url = "forgejo@git.hamburg.ccc.de:CCCHH/easterhegg-2011-website.git";
ref = "main";
rev = "3df97af36394f93514913f2be7e84c9b6bff1b1c";
};
in
{
services.nginx.virtualHosts = {
"acme-eh11.easterhegg.eu" = {
enableACME = true;
serverName = "eh11.easterhegg.eu";
listen = [
{
addr = "0.0.0.0";
port = 31820;
}
];
};
"eh11.easterhegg.eu" = {
forceSSL = true;
useACMEHost = "eh11.easterhegg.eu";
listen = [
{
addr = "0.0.0.0";
port = 8443;
ssl = true;
proxyProtocol = true;
}
];
root = pkgs.buildEnv {
name = "eh11";
paths = [
eh11
];
};
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;
'';
};
};
}