nicks-nix-config/hosts/Alaska/modules/nginx.nix
2023-04-10 19:35:27 -07:00

42 lines
1.2 KiB
Nix

{ config, lib, pkgs, ... }:
{
services.nginx = {
enable = true;
commonHttpConfig = ''
real_ip_header CF-Connecting-IP;
add_header 'Referrer-Policy' 'origin-when-cross-origin';
add_header X-Frame-Options DENY;
add_header X-Content-Type-Options nosniff;
'';
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
virtualHosts = {
"jellyfin.nickiel.net" = {
forceSSL = true;
sslCertificate = "/Aurora/nickiel.net.pem";
sslCertificateKey = "/Aurora/nickiel.net.key";
locations."/" = {
proxyPass = "http://127.0.0.1:8096/";
proxyWebsockets = true;
#extraConfig = "proxy_pass_header Authorization";
};
};
#"files.nickiel.net" = {
# forceSSL = true;
# sslCertificate = "/Aurora/nickiel.net.pem";
# sslCertificateKey = "/Aurora/nickiel.net.key";
# locations."/" = {
# proxyPass = "http://192.168.100.11:80";
# proxyWebsockets = true;
# };
# };
};
};
}