Setup nginx reverse proxy

This commit is contained in:
2022-05-22 00:19:56 -04:00
parent cd11567164
commit acd2cefb1e
9 changed files with 159 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
server {
listen 443 ssl;
server_name {{ item.domain }};
access_log /var/log/nginx/{{ item.domain }}.log main;
{% if not item.production %}
ssl_certificate /etc/ssl/certs/nginx-selfsigned.crt;
ssl_certificate_key /etc/ssl/private/nginx-selfsigned.key;
{% endif %}
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass {{ item.proxy_pass }};
}
}