[TYPO3-english] Re: Reverse proxy breaks backend URLs

Glenn S glenn.searby at gmail.com
Thu Apr 6 15:15:19 CEST 2017


You answer gave me the clue I needed. I needed to set the HTTP_HOST variable that I am passing to phpfpm to be my external domain name.

To do this, on my server which is hosting TYPO3 (also using Nginx), I changed the following rule:

location ~ \.php$ {
fastcgi_pass unix:/var/run/phpfpm/default.sock;
# various other fastcgi_blah...
fastcgi_param HTTP_HOST "www.my-domain-name.com";
}

Thanks very much for your help,
Glenn


More information about the TYPO3-english mailing list