Forward progress site hosting

This commit is contained in:
Nathan McCarty 2022-06-14 20:21:06 -04:00
parent bb8ce6e9ff
commit 76c2ec36f2
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
2 changed files with 11 additions and 0 deletions

View File

@ -195,6 +195,7 @@
./system-specific/oracles/matrix.nix
./system-specific/oracles/gitlab-runner.nix
./system-specific/oracles/gitea.nix
./system-specific/oracles/minecraft.nix
] ++ serverModules;
};

View File

@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
# Webserver for hosting pack
services.nginx.virtualHosts."pack.forward-progress.net" = {
enableAcme = true;
forceSSL = true;
root = "/var/www/pack.forward-progress.net";
};
}