nixos/services: add nginx base configuration
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
./fail2ban.nix
|
./fail2ban.nix
|
||||||
./sysctl.nix
|
./sysctl.nix
|
||||||
./host.nix
|
./host.nix
|
||||||
|
./nginx.nix
|
||||||
./snapper.nix
|
./snapper.nix
|
||||||
./substituters.nix
|
./substituters.nix
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -0,0 +1,37 @@
|
|||||||
|
{ config, lib, ... }:
|
||||||
|
let
|
||||||
|
inherit (config.networking) fqdn;
|
||||||
|
|
||||||
|
mkVhost =
|
||||||
|
attrs:
|
||||||
|
{
|
||||||
|
forceSSL = false; # TODO: tweak per host
|
||||||
|
}
|
||||||
|
// attrs;
|
||||||
|
|
||||||
|
mkProxy = port: {
|
||||||
|
proxyPass = "http://127.0.0.1:${toString port}/";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
{
|
||||||
|
networking.firewall.allowedTCPPorts = [
|
||||||
|
80
|
||||||
|
443
|
||||||
|
];
|
||||||
|
|
||||||
|
services.nginx = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
recommendedProxySettings = true;
|
||||||
|
recommendedTlsSettings = true;
|
||||||
|
|
||||||
|
recommendedGzipSettings = true;
|
||||||
|
recommendedOptimisation = true;
|
||||||
|
|
||||||
|
# services.nginx.virtualHosts."${fqdn}" = {
|
||||||
|
# addSSL = true;
|
||||||
|
# root = "/var/www/myhost.org";
|
||||||
|
# default = true;
|
||||||
|
# };
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user