How to fix Wordpress 8080 port redirects with Varnish
May 30, 2014
If you’re using the Better WP Security plugin for WordPress then you’re probably wanting to change your backend link from /wp-admin/ to /secret-dashboard or something. However if you have Varnish installed this can lead to problems.With Varnish installed it will want to redirect you to something like
It’s a pretty simple fix, all you have to do is open your Nginx Configuration probably under /etc/nginx/sites-available/default and add the following to your server block:
port_in_redirect off;
Restart Nginx and Varnish and your WordPress should now redirect correctly!