updated nginx state

This commit is contained in:
Paul 2024-01-03 13:29:16 +01:00
parent 2328adc1db
commit e23e94d12d
4 changed files with 18 additions and 8 deletions

View File

@ -13,6 +13,8 @@ nginx:
workers: 4
http_port: 8080
https_port: 4443
http_proxy_port: 8081
https_proxy_port: 4444
php_socket_file: /run/php/php-fpm.sock
subdirs:
- auth

View File

@ -1,5 +1,7 @@
## {{ salt['pillar.get']('salt_managed', default='Salt Managed') }}
{%- from "nginx/map.jinja" import nginx with context %}
listen {{ nginx.config.http_port }} proxy_protocol;
listen [::]:{{ nginx.config.http_port }} proxy_protocol;
listen {{ nginx.config.http_port }};
listen [::]:{{ nginx.config.http_port }};
listen {{ nginx.config.http_proxy_port }} proxy_protocol;
listen [::]:{{ nginx.config.http_proxy_port }} proxy_protocol;

View File

@ -1,5 +1,7 @@
## {{ salt['pillar.get']('salt_managed', default='Salt Managed') }}
{%- from "nginx/map.jinja" import nginx with context %}
listen {{ nginx.config.https_port }} ssl http2 proxy_protocol;
listen [::]:{{ nginx.config.https_port }} ssl http2 proxy_protocol;
listen {{ nginx.config.https_port }} ssl http2;
listen [::]:{{ nginx.config.https_port }} ssl http2;
listen {{ nginx.config.https_proxy_port }} ssl http2 proxy_protocol;
listen [::]:{{ nginx.config.https_proxy_port }} ssl http2 proxy_protocol;

View File

@ -72,11 +72,15 @@ http {
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml;
server {
listen {{ nginx.config.http_port }} default_server proxy_protocol;
listen [::]:{{ nginx.config.http_port }} default_server proxy_protocol;
listen {{ nginx.config.http_port }} default_server;
listen [::]:{{ nginx.config.http_port }} default_server;
listen {{ nginx.config.http_proxy_port }} default_server proxy_protocol;
listen [::]:{{ nginx.config.http_proxy_port }} default_server proxy_protocol;
listen {{ nginx.config.https_port }} default_server ssl http2 proxy_protocol;
listen [::]:{{ nginx.config.https_port }} default_server ssl http2 proxy_protocol;
listen {{ nginx.config.https_port }} default_server ssl http2;
listen [::]:{{ nginx.config.https_port }} default_server ssl http2;
listen {{ nginx.config.https_proxy_port }} default_server ssl http2 proxy_protocol;
listen [::]:{{ nginx.config.https_proxy_port }} default_server ssl http2 proxy_protocol;
root /var/www/html;
index index.html;