Update templates/nginx.conf.j2 to remove gzip comment.

This commit is contained in:
Brian Wells 2021-03-25 15:49:41 -05:00
parent a629923cb1
commit cf20c217da
1 changed files with 1 additions and 3 deletions

View File

@ -48,9 +48,7 @@ http {
{% endif %}
{% endblock %}
{% block http_gzip %}
# gzip on;
{% endblock %}
{% block http_gzip %}{% endblock %}
{% if nginx_extra_http_options %}
{{ nginx_extra_http_options|indent(4, False) }}