mirror of
https://github.com/HanXHX/ansible-nginx.git
synced 2026-02-24 09:03:29 +07:00
Acme uses light fake sites
This commit is contained in:
10
templates/etc/nginx/conf.d/FAKESITE.conf.j2
Normal file
10
templates/etc/nginx/conf.d/FAKESITE.conf.j2
Normal file
@@ -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