Feb 092010
Add custom HTTP header by nginx
Answer:
To inject custom HTTP header into the HTTP response, is very easy with nginx.
Add the following line into the configuration (add into the location you need):
E.g.
location / {
add_header Foo Bar;
}