reciproka-ops/profiles/jfdic-web.nix

48 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2021-11-16 10:13:12 +00:00
# NixOps configuration for deploying the JFDIC website
2022-07-20 04:34:07 +00:00
{
self,
config,
pkgs,
...
}: let
flake = builtins.getFlake (toString ../.);
jfdic-web = import flake.inputs.jfdic-web {};
2021-11-16 10:13:12 +00:00
webdomain = "jfdic.org";
in {
environment.sessionVariables = {
LOCALE_ARCHIVE = "/run/current-system/sw/lib/locale/locale-archive";
};
services.nginx = {
enable = true; # Enable Nginx
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
virtualHosts = {
2022-07-20 04:34:07 +00:00
"${webdomain}" = {
# website hostname
2021-11-16 10:13:12 +00:00
enableACME = true; # Use ACME certs
forceSSL = true; # Force SSL
root = "${jfdic-web}"; # Wesbite root
};
2022-07-20 04:34:07 +00:00
"www.${webdomain}" = {
# Respect our elders :-)
locations."/".extraConfig = "return 301 $scheme://${webdomain}$request_uri;";
2021-11-16 10:13:12 +00:00
};
};
};
security.acme = {
acceptTerms = true;
certs = {
"${webdomain}" = {
email = "admin@${webdomain}";
#group = "matrix-synapse";
};
};
};
2022-07-20 04:34:07 +00:00
networking.firewall.allowedTCPPorts = [80 443];
2021-11-16 10:13:12 +00:00
}