Move bekkalokk files, configure gitea

This commit is contained in:
2023-04-23 01:01:56 +02:00
parent f77a5e946f
commit 2f66325e25
8 changed files with 94 additions and 67 deletions

View File

@@ -0,0 +1,28 @@
{ config, ... }:
{
security.acme = {
acceptTerms = true;
defaults.email = "danio@pvv.ntnu.no";
};
services.nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedProxySettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
# virtualHosts = {
# "www.pvv.ntnu.no" = {
# forceSSL = true;
# locations = {
# "/pvv" = {
# proxyPass = "http://localhost:${config.services.mediawiki.virtualHost.listen.pvv.port}";
# };
# };
# };
# };
};
}