feat: host GitLab page felschr.com
This commit is contained in:
parent
f260cc678b
commit
b7741ff5ee
|
@ -22,6 +22,7 @@ in with builtins; {
|
||||||
./services/jellyfin.nix
|
./services/jellyfin.nix
|
||||||
./services/etebase.nix
|
./services/etebase.nix
|
||||||
./services/genie.nix
|
./services/genie.nix
|
||||||
|
./services/website.nix
|
||||||
./services/home-assistant
|
./services/home-assistant
|
||||||
./services/watchtower.nix
|
./services/watchtower.nix
|
||||||
./services/immich.nix
|
./services/immich.nix
|
||||||
|
@ -80,6 +81,7 @@ in with builtins; {
|
||||||
username = "felschr@pm.me";
|
username = "felschr@pm.me";
|
||||||
passwordFile = config.age.secrets.cloudflare.path;
|
passwordFile = config.age.secrets.cloudflare.path;
|
||||||
domains = [
|
domains = [
|
||||||
|
"felschr.com"
|
||||||
"home.felschr.com"
|
"home.felschr.com"
|
||||||
"esphome.felschr.com"
|
"esphome.felschr.com"
|
||||||
"cloud.felschr.com"
|
"cloud.felschr.com"
|
||||||
|
|
9
services/website.nix
Normal file
9
services/website.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.nginx.virtualHosts."felschr.com" = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/".proxyPass = "https://felschr.gitlab.io";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue