Здравствуйте
Имеется:
location / {
include /etc/nginx/proxy.conf;
proxy_pass http://haproxy;
}
location /mirrors/ {
internal;
limit_conn one 1;
root /var/mirrors;
}
error_page 503 /503.html;
location /503.html {
internal;
proxy_hide_header Content-Disposition;
types { }
default_type text/html;
root /var/www;
}
Запрос идёт через x-accel-redirect в /mirrors/ и попадает через limit_conn
в /503.html.
proxy_hide_header в /503.html не скрывает заголовок. Как сделать чтобы
заголовки от бэкенда скрывались при выводе ошибок?
nginx version: nginx/0.6.24
Алексей.