From 100f8392e334264ad61a4f0982f84f0cbc566710 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Tue, 25 Aug 2015 22:49:05 +0530 Subject: [PATCH] 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. --- data/etc/apache2/sites-available/plinth.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/etc/apache2/sites-available/plinth.conf b/data/etc/apache2/sites-available/plinth.conf index a8ce66c3d..8d1edf876 100644 --- a/data/etc/apache2/sites-available/plinth.conf +++ b/data/etc/apache2/sites-available/plinth.conf @@ -7,7 +7,7 @@ ## mod_proxy_http ## - 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