2019-02-19 11:10:05 +01:00
|
|
|
# {{ ansible_managed }}
|
|
|
|
|
2019-02-05 08:35:45 +01:00
|
|
|
server {
|
|
|
|
server_name {{ item.from }};
|
|
|
|
include "snippets/proxy-common.conf";
|
|
|
|
|
|
|
|
location / {
|
|
|
|
return 302 https://$host$request_uri;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
|
|
|
include "snippets/proxy-common-ssl.conf";
|
|
|
|
server_name {{ item.from }};
|
|
|
|
|
|
|
|
# Separate log files
|
|
|
|
access_log /var/log/nginx/{{ item.name }}.access.log;
|
|
|
|
error_log /var/log/nginx/{{ item.name }}.error.log;
|
|
|
|
|
|
|
|
# Use LetsEncrypt SSL
|
2019-02-07 09:33:20 +01:00
|
|
|
ssl_certificate /etc/letsencrypt/live/auro.re/fullchain.pem;
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/auro.re/privkey.pem;
|
|
|
|
ssl_trusted_certificate /etc/letsencrypt/live/auro.re/chain.pem;
|
2019-02-05 08:35:45 +01:00
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_redirect off;
|
|
|
|
proxy_pass http://{{ item.to }};
|
|
|
|
proxy_set_header Host {{ item.from }};
|
|
|
|
proxy_set_header P-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
|
|
|
|
# "A man is not dead while his name is still spoken." -- Going Postal
|
|
|
|
add_header X-Clacks-Overhead "GNU Terry Pratchett";
|
|
|
|
}
|
|
|
|
}
|