581fa6b560
All checks were successful
build configuration / build_vault01 (push) Successful in 1m5s
build configuration / build_web02 (push) Successful in 1m6s
build configuration / build_compute01 (push) Successful in 1m11s
build configuration / build_storage01 (push) Successful in 1m10s
lint / check (push) Successful in 24s
build configuration / build_web01 (push) Successful in 1m33s
build configuration / build_rescue01 (push) Successful in 49s
35 lines
701 B
Nix
35 lines
701 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
sources,
|
|
...
|
|
}:
|
|
|
|
let
|
|
metis = import sources.metis { inherit pkgs; };
|
|
|
|
inherit (metis) providers;
|
|
in
|
|
{
|
|
services.nginx.virtualHosts."calendrier.dgnum.eu" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
root = metis.production;
|
|
|
|
locations = lib.mapAttrs' (
|
|
name: value:
|
|
lib.nameValuePair "/cal/${name}/" {
|
|
extraConfig = ''
|
|
proxy_set_header X-Forwarded-Host $host;
|
|
proxy_set_header X-Forwarded-Server $host;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_pass ${value};
|
|
'';
|
|
}
|
|
) providers;
|
|
|
|
extraConfig = ''
|
|
rewrite ^/calendrier(.*)$ $1 permanent;
|
|
'';
|
|
};
|
|
}
|