I’ve set up Apache/Varnish but when I try to access a folder on the domain, such as mydomain.com/whatever it is redirecting to mydomain.com:8080/whatever/ and I’m getting a page not available. However when I access mydomain.com/whatever/ with a trailing “/” at the end everything works fine. I’m pretty new to Varnish so any help troubleshooting would be appreciated.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
I’m using ubuntu 16 , and having link problems:
http://example.com/test is redirecting to http://example.com:8080/test and returning error :|
tried @asb solution, but no deal :/
Is Apache listening on 8080 publicly? Usually the way to do it is have Apache listening on the local loopback device. What’s the Varnish backend configuration?
backend default {
.host = "127.0.0.1";
.port = "8080";
}
In /etc/apache2/ports.conf
you should set Apache to listen locally:
NameVirtualHost 127.0.0.1:8080
Listen 127.0.0.1:8080
And your VirtualHost should look like:
<VirtualHost 127.0.0.1:8080>
I didn’t think a live domain example mattered but here you go:
http://refaktor.co/test and http://refaktor.co/test/
What config file(s) do you need to see?
How are we expected to troubleshoot? You censored your domains and there is no config available.