server {
listen 80;
server_name test.example.com www.test.example.com;
location / {
proxy_pass http://10.0.0.9:80;
proxy_set_header Host internal.example.com.local;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header If-Modified-Since $http_if_modified_since;
}
}