mio-ops/profiles/mcwhirter.io.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

2020-10-13 11:44:45 +00:00
# NixOps configuration for deploying the mcwhirter.io website
{ config, pkgs, ...}:
let
2021-11-03 08:24:52 +00:00
sources = import ../nix/sources.nix;
mcwhirter-io = import sources.mcwhirter-io {};
2020-10-13 11:44:45 +00:00
webdomain = "mcwhirter.io";
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 = {
"${webdomain}" = { # website hostname
enableACME = true; # Use ACME certs
forceSSL = true; # Force SSL
root = "${mcwhirter-io}"; # Wesbite root
};
"www.${webdomain}" = { # Respect our elders :-)
locations."/".extraConfig = "return 301 $scheme://${webdomain}$request_uri;";
};
};
};
security.acme = {
acceptTerms = true;
certs = {
"${webdomain}" = {
email = "admin@${webdomain}";
2021-06-07 12:22:24 +00:00
group = "matrix-synapse";
2020-10-13 11:44:45 +00:00
};
};
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
}