Fix Apache proxy configuration when HTTPS is enabled

Close #370
This commit is contained in:
Régis Behmo 2020-10-06 12:00:38 +02:00
parent c3052aa34c
commit 9291b2e1b9
2 changed files with 6 additions and 2 deletions

View File

@ -2,6 +2,10 @@
Note: Breaking changes between versions are indicated by "💥".
## Unreleased
- [Bugfix] Fix Apache proxy configuration when HTTPS is enabled (#370)
## v10.2.3 (2020-10-02)
- [Feature] Add ``images printtag`` command

View File

@ -21,8 +21,8 @@
ProxyPreserveHost On
ProxyRequests On
ProxyPass / http://localhost:{{ NGINX_HTTP_PORT }}/
ProxyPassReverse / http://localhost:{{ NGINX_HTTP_PORT }}/
ProxyPass / http://localhost:{{ NGINX_HTTPS_PORT }}/
ProxyPassReverse / http://localhost:{{ NGINX_HTTPS_PORT }}/
</VirtualHost>
{% else %}
<VirtualHost *:80>