interfasys
Verified User
There is a header problem which is affecting PHP applications. Before I report it upstream, I want to make sure it's not due to the way CB does things.
Apache inserts a Strict-Transport-Security header and some PHP apps add headers via lines like this
When you analyse the request in the browser, you get either twice the parameters or twice the headers, depending on the browser, because some try to merge them.
Would there be a CB reason PHP-FPM is not correctly adding headers?
Apache inserts a Strict-Transport-Security header and some PHP apps add headers via lines like this
Code:
header('Strict-Transport-Security: max-age=31536000');
When you analyse the request in the browser, you get either twice the parameters or twice the headers, depending on the browser, because some try to merge them.
Would there be a CB reason PHP-FPM is not correctly adding headers?