1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

meteora: host on ful

This commit is contained in:
2026-03-04 17:58:50 +01:00
parent df36954fed
commit d952ecf17a
6 changed files with 67 additions and 4 deletions

18
systems/ful/meteora.nix Normal file
View File

@@ -0,0 +1,18 @@
{ config, pkgs, ... }: {
age.secrets.meteora-auth = {
file = ../../secrets/meteora-auth.age;
owner = "nginx";
};
services.nginx = {
enable = true;
virtualHosts."meteora.xn--kiern-0qa.de" = {
forceSSL = true;
enableACME = true;
root = "${pkgs.meteora-website}";
locations."/" = {
basicAuthFile = config.age.secrets.meteora-auth.path;
};
};
};
}