nixos/spec/web/nginx.nix

60 lines
1.2 KiB
Nix
Raw Permalink Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
...
}:
{
2024-01-15 16:56:47 +08:00
services.nginx = {
enable = true;
# enable all recommended settings
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
2025-01-13 11:52:09 +08:00
virtualHosts =
let
mkRedirect = host: {
locations."/".return = "307 https://${host}$request_uri";
forceSSL = true;
enableACME = true;
};
in
{
"_" = {
rejectSSL = true;
extraConfig = "return 444;";
};
2024-01-15 16:56:47 +08:00
2025-01-13 11:52:09 +08:00
"514fpv.one" = {
root = pkgs.callPackage ./site { };
forceSSL = true;
enableACME = true;
};
2024-01-19 15:47:39 +08:00
2025-01-13 11:52:09 +08:00
"www.514fpv.one" = {
globalRedirect = "514fpv.one";
enableACME = true;
};
2024-03-18 11:09:56 +08:00
2025-01-13 11:52:09 +08:00
"uptime.514fpv.one" = {
locations."/" = {
proxyPass = "http://127.0.0.1:4000";
proxyWebsockets = true;
};
forceSSL = true;
enableACME = true;
2024-03-18 11:09:56 +08:00
};
2024-04-01 11:00:44 +08:00
2025-01-13 11:52:09 +08:00
# redirections to home server
"src.514fpv.one" = mkRedirect "src.514fpv.io:2096";
"cloud.514fpv.one" = mkRedirect "cloud.514fpv.io:2096";
};
2024-01-15 16:56:47 +08:00
};
2025-01-13 11:52:09 +08:00
networking.firewall.allowedTCPPorts = [
80
443
];
2024-01-15 16:56:47 +08:00
}