Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: mp4 module
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 mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|