diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-03-26 20:31:04 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-03-26 20:31:04 +0200 |
commit | 4663ced9b61a9b4c2259a86c147f0be9ceadcca4 (patch) | |
tree | b5fb42f906d1e23ebfdf815130c561259c19830f | |
parent | a902a2f6e2c14d6ec4cffb56f12794489b6fd388 (diff) | |
download | ansible_collection-4663ced9b61a9b4c2259a86c147f0be9ceadcca4.tar.gz |
nginx custom options
-rw-r--r-- | galaxy.yml | 2 | ||||
-rw-r--r-- | roles/nginx_reverse_proxy/templates/nginx.conf.j2 | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,6 @@ namespace: kompetenzbolzen name: stuff -version: 0.18.2 +version: 0.18.3 readme: README.md authors: - Jonas Gunz <himself@jonasgunz.de> diff --git a/roles/nginx_reverse_proxy/templates/nginx.conf.j2 b/roles/nginx_reverse_proxy/templates/nginx.conf.j2 index 4c8ed3a..d279cdc 100644 --- a/roles/nginx_reverse_proxy/templates/nginx.conf.j2 +++ b/roles/nginx_reverse_proxy/templates/nginx.conf.j2 @@ -6,6 +6,8 @@ server { ssl_certificate {{ nginx_reverse_proxy.cert }}; ssl_certificate_key {{ nginx_reverse_proxy.key }}; + {{ nginx_reverse_proxy.nginx_options | default("") }} + location / { proxy_pass {{ nginx_reverse_proxy.proxy_address }}; } |