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 /roles/nginx_reverse_proxy/templates/nginx.conf.j2 | |
parent | a902a2f6e2c14d6ec4cffb56f12794489b6fd388 (diff) | |
download | ansible_collection-4663ced9b61a9b4c2259a86c147f0be9ceadcca4.tar.gz |
nginx custom options
Diffstat (limited to 'roles/nginx_reverse_proxy/templates/nginx.conf.j2')
-rw-r--r-- | roles/nginx_reverse_proxy/templates/nginx.conf.j2 | 2 |
1 files changed, 2 insertions, 0 deletions
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 }}; } |