mp4 module
Igor Sysoev
igor на sysoev.ru
Чт Сен 29 18:04:37 UTC 2011
On Thu, Sep 29, 2011 at 02:01:24PM -0400, arty777 wrote:
> Сорри за тупость , вот:
> 2011/09/29 21:00:08 [debug] 4939#0: *8 accept: 94.154.222.32 fd:13
> 2011/09/29 21:00:08 [notice] 4939#0: *8
> "^($|https?://(.*\.)?(uakino\.net|kinoturs\.ru|vprosmotre\.com|hq-video\.org|datix\.org\.ua|softpolis\.ru|kinoclub\.org\.ua|hdclips\.com\.ua|relizlab\.org|onlyfilmy\.ru|files-box\.ru|movieshd\.ru|mulyatv\.ru|yandex\.ru|yandex\.ua|google\.com))"
> matches "", client: 94.154.222.32, server: fs0.uakino.net, request: "GET
> /media/video/3903.mp4 HTTP/1.1", host: "fs0.uakino.net"
http://nginx.org/en/docs/debugging_log.html
Note, that a defining log on another level, for example, on server
level disables the debugging log for this server:
error_log /path/to/log debug;
http {
server {
error_log /path/to/log;
...
You should either comment out this server log or add the “debug” flag too:
error_log /path/to/log debug;
http {
server {
error_log /path/to/log debug;
...
--
Igor Sysoev
Подробная информация о списке рассылки nginx-ru