Acme uses light fake sites
parent
ae6dc88bc4
commit
59dd3997de
|
@ -19,7 +19,7 @@
|
|||
|
||||
- name: TEMPLATE | Create fake site
|
||||
template:
|
||||
src: "etc/nginx/sites-available/_base.j2"
|
||||
src: "etc/nginx/conf.d/FAKESITE.conf.j2"
|
||||
dest: "{{ nginx_etc_dir }}/conf.d/FAKESITE_{{ item | nginx_site_name }}.conf"
|
||||
with_items: "{{ acme_create }}"
|
||||
register: fake_site
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue