.well-known directory should not be password protected for let's encrypt
This commit is contained in:
parent
56fb349d12
commit
f2d43d3b27
8 changed files with 50 additions and 0 deletions
|
@ -37,6 +37,11 @@ server {
|
|||
expires 30d;
|
||||
root {homedir};
|
||||
}
|
||||
|
||||
location /.well-known {
|
||||
auth_basic off;
|
||||
allow all; # Allow all to see content
|
||||
}
|
||||
|
||||
location ~ (apache_subdomain_template|apachetemplate|apachetemplate_ipbased|apachetemplate_passivedomains|/\.conf$|/\.ht|access_log|error_log|access\.log|error\.log) {
|
||||
deny all;
|
||||
|
|
|
@ -142,6 +142,11 @@ server {
|
|||
root /usr/share/;
|
||||
}
|
||||
}
|
||||
|
||||
location /.well-known {
|
||||
auth_basic off;
|
||||
allow all; # Allow all to see content
|
||||
}
|
||||
|
||||
# any files that should be avoided, may be put here:
|
||||
location ~ (apache_subdomain_template|apachetemplate|apachetemplate_ipbased|apachetemplate_passivedomains|/\.conf$|/\.ht|access_log|error_log|access\.log|error\.log) {
|
||||
|
|
|
@ -37,6 +37,11 @@ server {
|
|||
expires 30d;
|
||||
root {homedir};
|
||||
}
|
||||
|
||||
location /.well-known {
|
||||
auth_basic off;
|
||||
allow all; # Allow all to see content
|
||||
}
|
||||
|
||||
location ~ (apache_subdomain_template|apachetemplate|apachetemplate_ipbased|apachetemplate_passivedomains|/\.conf$|/\.ht|access_log|error_log|access\.log|error\.log) {
|
||||
deny all;
|
||||
|
|
|
@ -136,6 +136,11 @@ server {
|
|||
root /usr/share/;
|
||||
}
|
||||
}
|
||||
|
||||
location /.well-known {
|
||||
auth_basic off;
|
||||
allow all; # Allow all to see content
|
||||
}
|
||||
|
||||
# any files that should be avoided, may be put here:
|
||||
location ~ (apache_subdomain_template|apachetemplate|apachetemplate_ipbased|apachetemplate_passivedomains|/\.conf$|/\.ht|access_log|error_log|access\.log|error\.log) {
|
||||
|
|
|
@ -37,6 +37,11 @@ server {
|
|||
expires 30d;
|
||||
root {homedir};
|
||||
}
|
||||
|
||||
location /.well-known {
|
||||
auth_basic off;
|
||||
allow all; # Allow all to see content
|
||||
}
|
||||
|
||||
location ~ (apache_subdomain_template|apachetemplate|apachetemplate_ipbased|apachetemplate_passivedomains|/\.conf$|/\.ht|access_log|error_log|access\.log|error\.log) {
|
||||
deny all;
|
||||
|
@ -84,6 +89,11 @@ server {
|
|||
expires 30d;
|
||||
root {homedir};
|
||||
}
|
||||
|
||||
location /.well-known {
|
||||
auth_basic off;
|
||||
allow all; # Allow all to see content
|
||||
}
|
||||
|
||||
location ~ (apache_subdomain_template|apachetemplate|apachetemplate_ipbased|apachetemplate_passivedomains|/\.conf$|/\.ht|access_log|error_log|access\.log|error\.log) {
|
||||
deny all;
|
||||
|
|
|
@ -142,6 +142,11 @@ server {
|
|||
root /usr/share/;
|
||||
}
|
||||
}
|
||||
|
||||
location /.well-known {
|
||||
auth_basic off;
|
||||
allow all; # Allow all to see content
|
||||
}
|
||||
|
||||
# any files that should be avoided, may be put here:
|
||||
location ~ (apache_subdomain_template|apachetemplate|apachetemplate_ipbased|apachetemplate_passivedomains|/\.conf$|/\.ht|access_log|error_log|access\.log|error\.log) {
|
||||
|
@ -301,6 +306,11 @@ server {
|
|||
}
|
||||
}
|
||||
|
||||
location /.well-known {
|
||||
auth_basic off;
|
||||
allow all; # Allow all to see content
|
||||
}
|
||||
|
||||
# any files that should be avoided, may be put here:
|
||||
location ~ (apache_subdomain_template|apachetemplate|apachetemplate_ipbased|apachetemplate_passivedomains|/\.conf$|/\.ht|access_log|error_log|access\.log|error\.log) {
|
||||
deny all;
|
||||
|
|
|
@ -42,6 +42,11 @@ server {
|
|||
expires 30d;
|
||||
root {homedir};
|
||||
}
|
||||
|
||||
location /.well-known {
|
||||
auth_basic off;
|
||||
allow all; # Allow all to see content
|
||||
}
|
||||
|
||||
location ~ (apache_subdomain_template|apachetemplate|apachetemplate_ipbased|apachetemplate_passivedomains|/\.conf$|/\.ht|access_log|error_log|access\.log|error\.log) {
|
||||
deny all;
|
||||
|
|
|
@ -150,6 +150,11 @@ server {
|
|||
}
|
||||
}
|
||||
|
||||
location /.well-known {
|
||||
auth_basic off;
|
||||
allow all; # Allow all to see content
|
||||
}
|
||||
|
||||
# any files that should be avoided, may be put here:
|
||||
location ~ (apache_subdomain_template|apachetemplate|apachetemplate_ipbased|apachetemplate_passivedomains|/\.conf$|/\.ht|access_log|error_log|access\.log|error\.log) {
|
||||
deny all;
|
||||
|
|
Loading…
Reference in a new issue