непонятный баг, контент с другого домена

2014-06-13 Thread AlexFC
Здравствуйте! Столкнулся со следующей проблемой: Возникает на каждом новом юзере, воспроизводится. Создаю новый ввв-домен, можно с новым пользователем, можно на существующем. Обращаюсь http://домен/images/logo.png (или что угодно другое из статики не существующей в этом домене). Получаю в ответ

Re: непонятный баг, контент с другого домена

2014-06-13 Thread Maksim Kulik
Здравствуйте! Посмотрите в сторону http://nginx.org/ru/docs/http/ngx_http_proxy_module.html#proxy_cache_key Вам надо включить в proxy_cache_key переменную $host (как минимум). 13 июня 2014 г., 11:51 пользователь AlexFC nginx-fo...@nginx.us написал: Здравствуйте! Столкнулся со следующей

Re: непонятный баг, контент с другого домена

2014-06-13 Thread AlexFC
Глобально кеш не используется, кеш был активирован для одного из доменов, не домена X и не тестового, для чистоты эксперимента убрал, и вычистил из конфига все что касается proxy_cache* И на сколько я понимаю это все же кеширование динамического контента от апача, который в данном случае вообще не

Re: непонятный баг, контент с другого домена

2014-06-13 Thread denis
13.06.2014 12:51, AlexFC пишет: Здравствуйте! Столкнулся со следующей проблемой: Возникает на каждом новом юзере, воспроизводится. Создаю новый ввв-домен, можно с новым пользователем, можно на существующем. Обращаюсь http://домен/images/logo.png (или что угодно другое из статики не существующей

Rtmp Module and LibRtmp

2014-06-13 Thread MrDaniel
Hello. I am seeking advice and suggestions for this issue with nginx and the rtmp module I have been working with RTMP. Previously i have worked with cRtmpServer, however nginx seems better for extending the service later on, further down the line. I am using nginx from this source, which works

How could I forbid outside visits without response 403

2014-06-13 Thread ????
Hi Buddy, I am a newer to Nginx world, now I have a project to link the varnish HTTP server and nginx together, nginx is the back end. I want to allow the connections only by varnish, so I use deny all ,this kind of stuff to archieve this. But if there is a way to compeletely forbid the

Re: Rtmp Module and LibRtmp

2014-06-13 Thread MrDaniel
Further to this. Here is the log for working swf and not working libRTMP Flash.swf 127.0.0.1 [06/Jun/2014:12:28:23 -0700] PLAY vod bunny.flv - 1037 400014 http://dl.dropboxusercontent.com/u/2918563/flvplayback.swf; WIN 13,0,0,214 (1m 34s) LibRTMP 127.0.0.1 [07/Jun/2014:12:44:39 -0700]

Re: Rtmp Module and LibRtmp

2014-06-13 Thread itpp2012
Specific rtmp issues are better placed here: https://groups.google.com/forum/#!forum/nginx-rtmp Posted at Nginx Forum: http://forum.nginx.org/read.php?2,250839,250843#msg-250843 ___ nginx mailing list nginx@nginx.org

Re: How could I forbid outside visits without response 403

2014-06-13 Thread B.R.
What you describe is by design the job of firewalls... in your case dropping unwanted connections rather that rejecting them. 1 tool = 1 task --- *B. R.* On Fri, Jun 13, 2014 at 4:14 PM, 姚锟 627...@qq.com wrote: Hi Buddy, I am a newer to Nginx world, now I have a project to link the varnish

Re: How could I forbid outside visits without response 403

2014-06-13 Thread Jonathan Matthews
On 13 Jun 2014 15:15, 姚锟 627...@qq.com wrote: I think it still waste some resourses, RETURN A 403 STATIC PAGE.. I think you're probably wrong. You're almost certainly prematurely optimising the wrong thing. Just 403 the unwanted requests and move on with your job/life/project. I mean this

Re: How could I forbid outside visits without response 403

2014-06-13 Thread Steve Wilson
On 13/06/14 15:14, 姚锟 wrote: Hi Buddy, I am a newer to Nginx world, now I have a project to link the varnish HTTP server and nginx together, nginx is the back end. I want to allow the connections only by varnish, so I use deny all ,this kind of stuff to archieve this. But if there is a