feat: host GitLab page felschr.com

This commit is contained in:
Felix Schröter 2023-01-08 17:38:11 +01:00
parent f260cc678b
commit b7741ff5ee
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 11 additions and 0 deletions
services

9
services/website.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
services.nginx.virtualHosts."felschr.com" = {
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "https://felschr.gitlab.io";
};
}