Merge pull request #6256 from mailcow/staging

[Nginx] move conf.d include to end of nginx.conf
This commit is contained in:
FreddleSpl0it
2025-01-23 14:55:38 +01:00
committed by GitHub
+2 -2
View File
@@ -27,8 +27,6 @@ http {
#gzip on; #gzip on;
include /etc/nginx/conf.d/*.conf;
# map-size.conf: # map-size.conf:
map_hash_max_size 256; map_hash_max_size 256;
map_hash_bucket_size 256; map_hash_bucket_size 256;
@@ -124,4 +122,6 @@ http {
include /etc/nginx/includes/sites-default.conf; include /etc/nginx/includes/sites-default.conf;
} }
{% endfor %} {% endfor %}
include /etc/nginx/conf.d/*.conf;
} }