feat(focus): add nginx

This commit is contained in:
514fpv 2024-01-27 09:56:16 +08:00
parent 30f569afaa
commit f6c76320ef
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

24
spec/focus/nginx.nix Normal file
View file

@ -0,0 +1,24 @@
{
services.nginx = {
enable = true;
# enable all recommended settings
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
# set a reasonable default
clientMaxBodySize = "64m";
virtualHosts = {
"_" = {
addSSL = true;
useACMEHost = ".sf.514fpv.io";
extraConfig = "return 444;";
};
};
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
}