You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many people (#38, #24) asked why their headers were not working correctly with Rocket-Nginx.
The reason is: because of the way Nginx is built. (More info here)
Rocket-Nginx version 1.2 comes with comments in the script to make things easier to generate your configuration. The configuration generator is what needs to be built.
Here is what is needed:
A HTML file made of 6 textareas
HTTP/HTTPS headers
GZIP headers
NON-Gzip headers
CSS headers
JS headers
Media headers
Rocket-Nginx users would then add their headers in the specific textareas.
When the user hits submit, the script would then get the original script found here in PHP and the values in each textbox would be inserted in the configuration at the right place:
HTTP/HTTPS headers would be inserted next to : #!# HEADER_HTTP #!#
GZIP headers would be inserted next to : #!# HEADER_GZIP #!#
NON-Gzip headers would be inserted next to : #!# HEADER_NON_GZIP #!#
CSS headers would be inserted next to : #!# HEADER_CSS #!#
JS headers would be inserted next to : #!# HEADER_JS #!#
Media headers would be inserted next to : #!# HEADER_MEDIAS #!#
It would be nice if the values were kept in the cookies for future use.
Let me know if you want to help! :-)
The text was updated successfully, but these errors were encountered:
Many people (#38, #24) asked why their headers were not working correctly with Rocket-Nginx.
The reason is: because of the way Nginx is built. (More info here)
Rocket-Nginx version 1.2 comes with comments in the script to make things easier to generate your configuration. The configuration generator is what needs to be built.
Here is what is needed:
Rocket-Nginx users would then add their headers in the specific textareas.
When the user hits submit, the script would then get the original script found here in PHP and the values in each textbox would be inserted in the configuration at the right place:
Let me know if you want to help! :-)
The text was updated successfully, but these errors were encountered: