Fix issue with Apache configuration

I faced a situation that on my localhost resolved to an IPv6 address and
Apache was unable to connect to Plinth as Plinth does not yet listen on
IPv6 address.  It is best to change this to an explict local IP address
at least until Plinth listens on IPv6 address.
This commit is contained in:
Sunil Mohan Adapa 2015-08-25 22:49:05 +05:30 committed by James Valleroy
parent 114370c2e0
commit 100f8392e3

View File

@ -7,7 +7,7 @@
## mod_proxy_http
##
<Location /plinth>
ProxyPass http://localhost:8000/plinth
ProxyPass http://127.0.0.1:8000/plinth
## Send the scheme from user's request to enable Plinth to redirect
## URLs, set cookies, set absolute URLs (if any) properly.
RequestHeader set X-Forwarded-Proto 'https' env=HTTPS