I would like NGINX to send a content type / xml application for the entire location response:
My configuration is based on the documentation http://wiki.nginx.org/HttpCoreModule#types :
server { server_name my_name listen 8088; keepalive_timeout 5; location / { proxy_pass http://myhost; types { } default_type application/xml } }
But the server always sends content like "text / xml". Any idea?
source share