nginx module: turn off basic auth on acme locations

+2
+2
nixos/modules/services/web-servers/nginx/default.nix
··· 82 82 location /.well-known/acme-challenge { 83 83 try_files $uri @acme-fallback; 84 84 root ${vhost.acmeRoot}; 85 + auth_basic off; 85 86 } 86 87 location @acme-fallback { 88 + auth_basic off; 87 89 proxy_pass http://${vhost.acmeFallbackHost}; 88 90 } 89 91 '';