You cannot 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
388 B
YAML
19 lines
388 B
YAML
---
|
|
|
|
allow_duplicates: no
|
|
|
|
dependencies:
|
|
- role: nginx/server
|
|
domain: "{{ inventory_hostname }}"
|
|
listen_directives: |
|
|
listen 443 ssl http2 default_server;
|
|
listen [::]:443 ssl http2 default_server;
|
|
directives: |
|
|
location / {
|
|
return 403;
|
|
}
|
|
location = /status {
|
|
stub_status;
|
|
{{ status_page_acl | indent(width=2) }}
|
|
}
|