blob: 8c3c7354b8cba2db072b24f0a13fc4e8f1c533a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# nginx_reverse_proxy
Small reverse proxy for local HTTPS proxieing.
```yml
---
nginx_reverse_proxy:
cert: '/etc/ssl/certs/{{ ansible_facts.fqdn }}.pem'
key: '/etc/ssl/private/{{ ansible_facts.fqdn }}.key'
proxy_address: 'http://localhost:8080'
server_name: '{{ ansible_facts.fqdn }}'
```
|