tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nginx module: turn off basic auth on acme locations
Robin Gloster
9 years ago
e18f8e8b
4e5c7913
+2
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
web-servers
nginx
default.nix
+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
85
+
auth_basic off;
85
86
}
86
87
location @acme-fallback {
88
88
+
auth_basic off;
87
89
proxy_pass http://${vhost.acmeFallbackHost};
88
90
}
89
91
'';