Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Как узнать response content type?
- To: nginx-ru@xxxxxxxxx
- Subject: Как узнать response content type?
- From: "F1restorm" <nginx-forum@xxxxxxxx>
- Date: Wed, 19 Dec 2012 10:09:13 -0500
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tigger.jlkhosting.com; s=x; h=Date:Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=ZTotmXwutYCVR5Bkpx0ILJNBqALVY8q/t+gFRDhNAeI=; b=pyido2ZjNNDuouQvfANpZf3yBKN0O3AHesqlFScO8TmN4iVq5hAg280m0FYSSPAQSW8dyTZYxmbJ3dBmN+Yh5pEAOF6TbE0HZiV6Eno78GJ+WUxEafvaASdAg7dm/KSA;
Как сделать работоспособной следующую конструкцию? Нужно показывать разные
страницы ошибок в зависимости от content type из response.
location / {
if ($response_content_type = application/xml) {
error_page 5xx /error_5xx.html;
}
}
Переменная $content_type содержит значение от request и не подходит.
Переменной типа $response_content_type не нашел.
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,234203,234203#msg-234203
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|