mirror of
https://github.com/HanXHX/ansible-nginx.git
synced 2026-08-25 23:24:26 +07:00
Acme uses light fake sites
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
server {
|
||||
{% for port in item.listen | default([80]) %}
|
||||
listen {{ port }};
|
||||
{% endfor %}
|
||||
server_name {% if item.name is string %}{{ item.name }}{% else %}{{ item.name | join(" ") }}{% endif %}{% if item.redirect_from is defined %} {% if item.redirect_from is string %}{{ item.redirect_from }}{% else %}{{ item.redirect_from | join(" ") }}{% endif %}{% endif %};
|
||||
|
||||
location / {
|
||||
return 503;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user