diff options
author | Georg Pfuetzenreuter | 2023-02-04 11:47:09 +0100 |
---|---|---|
committer | Georg Pfuetzenreuter | 2023-02-04 11:47:09 +0100 |
commit | 2e4d350c7f2b0db4c9b21b40dbfb057509907957 (patch) | |
tree | 506f174ed06976d2bec8bf8e2ac293098c92ae84 | |
parent | bb252c1d473da7a5f5a1a5d62dfbfebb324fd299 (diff) | |
download | salt-2e4d350c7f2b0db4c9b21b40dbfb057509907957.tar.gz salt-2e4d350c7f2b0db4c9b21b40dbfb057509907957.tar.bz2 salt-2e4d350c7f2b0db4c9b21b40dbfb057509907957.zip |
Add web-proxy role
- web-proxy role to configure nginx
- pillar with common nginx configuration
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
-rw-r--r-- | pillar/role/web-proxy.sls | 21 | ||||
-rw-r--r-- | salt/role/web-proxy.sls | 5 |
2 files changed, 26 insertions, 0 deletions
diff --git a/pillar/role/web-proxy.sls b/pillar/role/web-proxy.sls new file mode 100644 index 0000000..5913fa6 --- /dev/null +++ b/pillar/role/web-proxy.sls @@ -0,0 +1,21 @@ +{%- from slspath ~ '/../map.jinja' import listen_ips -%} + +nginx: + snippets: + robots: + - location /robots.txt: + - root: /srv/www/htdocs + php-fastcgi: + - 'location ~* \.php$': + - fastcgi_index: index.php + - fastcgi_pass: unix:/run/php-fpm/php-fpm.sock + - 'include': fastcgi_params + - fastcgi_param: SCRIPT_FILENAME $document_root$fastcgi_script_name + {%- if listen_ips | length %} + listen: + {%- for ip in listen_ips %} + - listen: {{ ip }}:443 ssl http2 + {%- endfor %} + {%- endif %} + + diff --git a/salt/role/web-proxy.sls b/salt/role/web-proxy.sls new file mode 100644 index 0000000..81f2293 --- /dev/null +++ b/salt/role/web-proxy.sls @@ -0,0 +1,5 @@ +include: + - nginx.pkg + - nginx.config + - nginx.snippets + - nginx.servers |