You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
424 B
19 lines
424 B
---
|
|
|
|
- name: Setup nginx auth scaffolding dirs
|
|
hosts: [ 'debian10' ]
|
|
tasks:
|
|
- shell: |-
|
|
cd /etc/nginx
|
|
mkdir -p auth.d passwords.d
|
|
|
|
- copy:
|
|
dest: '/etc/nginx/auth.d/grant-access-certbot.conf'
|
|
content: |-
|
|
set $auth_basic Restricted;
|
|
|
|
if ($request_uri ~* "well-known") {
|
|
set $auth_basic off;
|
|
}
|
|
|
|
auth_basic $auth_basic;
|