Compare commits

..

No commits in common. '86b8b1b12be635234fc6f8fe19ff59806d8a9662' and 'b1c93d608910b1d88e1825009b91489b91062577' have entirely different histories.

@ -41,8 +41,7 @@ The variable `http_sites` is a dictionnary of the http site managed by nginx.
http_sites:
`server_name`:
root_snippets:
- ? TODO (currently, raw strings added to the config (like `location.my_location.config`)
use_certbot: bool, optionnal, indicate that the certbot role should generate this certificat.
- ? TODO
locations:
`location`:
templates:
@ -62,12 +61,6 @@ Inside the templates, `server_name` is accessed with `{{ item.key }}`, en variab
Inside templates of a location, in addition to the variables of the server block, the variables of the location block can be accessed with `{{ location.value.varname }}`, and the value of `location` with `{{ location.key }}`.
## Recommander role
The `certbot` role is recommanded to use with this role. It generate LE certificates and has this role has a dependency.
https://gitea.auro.re/Pains-Perdus/certbot
## Copyright
Copyright 2021 Jean-Marie Mineau <histausse@protonmail.com>

@ -106,14 +106,5 @@
template:
src: http_proxy_acme.j2
dest: "/etc/nginx/sites-available/acme_http_proxy_{{ item.key }}"
loop: "{{ ssl_reverse_proxy_upstream | default({}) | dict2items}}"
notify: Reload nginx
- name: Activate sites
file:
src: "/etc/nginx/sites-available/acme_http_proxy_{{ item.key }}"
dest: "/etc/nginx/sites-enabled/acme_http_proxy_{{ item.key }}"
state: link
force: yes
loop: "{{ ssl_reverse_proxy_upstream | default({}) | dict2items}}"
loop: "{{ ssl_reverse_proxy_upstream | dict2items}}"
notify: Reload nginx

@ -1,4 +1,4 @@
{{ ansible_managed | comment }}
i{{ ansible_managed | comment }}
server {
listen 80;
listen [::]:80;

@ -4,20 +4,16 @@ server {
listen [::]:80;
server_name {{ item.key }};
access_log /var/log/nginx/http_{{ item.key }}.log;
error_log /var/log/nginx/http_{{ item.key }}_error.log;
# Redirect to https
location / {
return 302 https://$host$request_uri;
}
# ACME directory, to limit interaction with certbot
location /.well-known/acme-challenge/ {
root /var/www/well-known/acme-challenge/;
}
# Redirect to https
location / {
return 302 https://$host$request_uri;
}
include /etc/nginx/mime.types;
default_type application/octet-stream;
@ -59,7 +55,6 @@ server {
{{ config }}
{%- endfor -%}
{%- endfilter %}
# Logs
access_log /var/log/nginx/{{ item.key }}.log;

Loading…
Cancel
Save