Forward progress site hosting
This commit is contained in:
parent
bb8ce6e9ff
commit
76c2ec36f2
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue