Infinite loop behind SSL proxy on non-standard port
Changing proxy_set_header Host $host; to proxy_set_header Host $http_host; fixed the issue. (source)
Changing proxy_set_header Host $host; to proxy_set_header Host $http_host; fixed the issue. (source)
Proxy not working with Requests::request_multiple()?
The problem was the sql database that did not update urls. I do not know if there is a way to do this easily but I feel like I have looked everywhere for this solution and finally found it with this answer to a somewhat similar question : https://premium.wpmudev.org/forums/topic/how-to-change-url-for-wp-multi-site#post-426799 I started over from where everything … Read more
Subdirectory multisite installation with several domain names?
Not sure if this helps, but you can try.. So WordPress’ default HTTP transport is using cURL, and the HTTP class sets the proxy authorization method to CURLAUTH_ANY (see source), which might explain why the Proxy-Authorization: Basic xxxxx… header is missing from the request. And there’s a hook you can try to change the proxy … Read more
302 redirect to signup with nginx reverse proxy
Remove all of the force SSL plugins that you’re running, revert back to your default settings in the wp-config.php and .htaccess before applying forces to use HTTPS. This will remove all of the conflicts you are having and the redirect loops. After that, follow these steps: Go and download Interconnect IT’s Database Search & Replace … Read more
I created simillar configuration to yours and proxy is working for me. My config looks like: Host production HostName xxx.xxx.xxx.xxx ProxyCommand ssh -q -W %h:22 vagrant ForwardAgent yes Host vagrant HostName 127.0.0.1 User vagrant Port 2222 UserKnownHostsFile /dev/null StrictHostKeyChecking no PasswordAuthentication no IdentityFile /path/to/.vagrant/machines/default/virtualbox/private_key IdentitiesOnly yes ForwardAgent yes LogLevel FATAL I’m treating my vagrant local … Read more
How can I change permalinks to use a different domain and path from where the blog is hosted?
Please take a look at Administation Over SSL, particularly the “Using a Reverse Proxy” section.