infrastructure/hosts/hydrogen/services/nginx/personal-websites.nix

29 lines
660 B
Nix
Raw Normal View History

{ pkgs, ... }:
let
pages = pkgs.fetchFromGitea {
domain = "git.fainsin.bzh";
owner = "Laurent";
repo = "personal-website";
rev = "pages";
sha256 = "sha256-ahx9YSKyImQDu7k6/hbgYQdAnw5yInXQ/n14CLWTVkc=";
};
in {
services.nginx.virtualHosts = {
"laurent.fainsin.bzh" = {
enableACME = true;
forceSSL = true;
root = "${pages}";
};
"fainsin.bzh" = {
enableACME = true;
forceSSL = true;
locations."/".return =
''301 "$scheme://laurent.fainsin.bzh$request_uri"'';
};
default = {
default = true;
locations."/".return = ''301 "$scheme://fainsin.bzh" '';
};
};
}