.. this is actually likely not disabling it for some pages, that will need this to be copy & pasted, but it's hard to tell just from the nginx docs. We'll make sure after deploying. Change-Id: I2fa6e31ca10835a206673b858594fa071e729d82 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3020 Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi>
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			963 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			963 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  config = {
 | 
						|
    services.nginx = {
 | 
						|
      enable = true;
 | 
						|
      enableReload = true;
 | 
						|
 | 
						|
      recommendedTlsSettings = true;
 | 
						|
      recommendedGzipSettings = true;
 | 
						|
      recommendedProxySettings = true;
 | 
						|
 | 
						|
      appendHttpConfig = ''
 | 
						|
        add_header Permissions-Policy "interest-cohort=()";
 | 
						|
      '';
 | 
						|
    };
 | 
						|
 | 
						|
    # NixOS 20.03 broke nginx and I can't be bothered to debug it
 | 
						|
    # anymore, all solution attempts have failed, so here's a
 | 
						|
    # brute-force fix.
 | 
						|
    #
 | 
						|
    # TODO(tazjin): Find a link to the upstream issue and see if
 | 
						|
    # they've sorted it after ~20.09
 | 
						|
    systemd.services.fix-nginx = {
 | 
						|
      script = "${pkgs.coreutils}/bin/chown -f -R nginx: /var/spool/nginx /var/cache/nginx";
 | 
						|
 | 
						|
      serviceConfig = {
 | 
						|
        User = "root";
 | 
						|
        Type = "oneshot";
 | 
						|
      };
 | 
						|
    };
 | 
						|
 | 
						|
    systemd.timers.fix-nginx = {
 | 
						|
      wantedBy = [ "multi-user.target" ];
 | 
						|
      timerConfig = {
 | 
						|
        OnCalendar = "minutely";
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |