Posts by Capilé • 281 points
2 posts
-
2
votes1
answer1547
viewsA: NGINX as reverse proxy and cache of an external shared server running apache
Simply forward the requests made to your server running Nginx and pass it to the external server in the same way you would route it to a local apache. This is an example configuration (it is usually…
-
16
votes8
answers75484
viewsA: Error - "Cannot Modify header information - headers already sent"
The function header can only be used before the script sends any kind of response to the client, as the header modifies the header of the HTTP response (and this cannot be modified after some…