I am using Ubuntu Natty 12 and I am using NGINX. (It would insane to consider bloated Apache these days)
What I want to do is edit the default index page templates and add some Meta ViewPorts and styling to them. I know Apache has IndexHeadInsert
:
# META VIEWPORT
IndexHeadInsert "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">"
Examples would be then:
https://archive.apache.org/dist/ant/binaries/
Does anyone know where to start on NGINX?
Nginx has
sub
module for replace part of answer. http://nginx.org/en/docs/http/ngx_http_sub_module.html It's work well with all answers including autoindex. Just check if your nginx has this module (typenginx -V
), may be you neednginx-full
package.If you need this replace only for one location (/download/, for example), just put it in location block.
=
here match /download/ only, but do not match /download/file...If you have lot of locations and want to keep rules in one place, you can try to redirect 403 error to named location
But sub module still wery weak because you can use only one sub_filter directive =( It's possible to hack with proxy request to self, but it's bad solution. Better to use 3rd party module https://github.com/yaoweibin/ngx_http_substitutions_filter_module
html5, all the same:
sub_filter "<html>\r\n<head><title>" "<!DOCTYPE html>\r\n<html>\r\n<head><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"><title>";