Re: Helloo,do anyone has this situation?

2015-04-20 Thread cruze guo
pls give me sometime, I will give the detail document about this "bug" 2015-04-16 18:02 GMT+08:00 cruze guo : > I compile the nginx with this configure. > --prefix=/home/svn/nginx --user=svn > --add-module=../ngx_devel_kit-master > --add-module=../srcache-nginx-module-master > --add-module=../

Re: VHost Guidance

2015-04-20 Thread daBee
OK, thanks for the guidance. I will go have a look. I was using two texts that somehow convinced me it was done this way. I'll read up with the online documentation. Cheers shiroweb Wrote: --- > Hi, I'm not sure what you did, but nginx.conf f

upstream prematurely closed connection while reading response header from upstream

2015-04-20 Thread jackyfkc
Recently I tried to implemented an Nginx extension module to save the request body to redis list (via RPUSH command) directly . However, I got a 502 Bad Gateway error! The error occurs after calling ngx_http_redis_create_request, before ngx_http_redis_process_header() called [ nginx/logs/error.lo

Re: nginx_slowfs_cache

2015-04-20 Thread Piotr Sikora
Hi, > Today after upgrading from nginx version 1.6.x to 1.7.x I have got a > segmentation fault. After short investigation the culprit was found. It is > module by Frikle - nginx_slowfs_cache. > > Is anybody has the same issue? Is this module is obsolete? It's not obsolete, but it's not active

Re: VHost Guidance

2015-04-20 Thread JACK LINKERS
Hi, I'm not sure what you did, but nginx.conf file, is only used to configure the http server, not vhosts. There is 2 ways to setup vhosts (called server blocs in NginX) : A. Use the default config file (usually located @ /etc/nginx/sites-available/default) and add all your vhosts there. The defa

Re: Disable caching the names in /etc/hosts in reverse proxy?

2015-04-20 Thread itpp2012
B.R. Wrote: --- > nginx resolves names on start or reload. > The commercial version added a feature to update names periodically > (resolve > option of the server directive in the upstream module >

Re: VHost Guidance

2015-04-20 Thread daBee
Hi there. Tried 192.168.1.4 (hard assigned), 127.0.0.1, localhost and 0.0.0.0: nothing shows up. Tried netstat -ln and nothing showing "8080" in any return. Jason Woods Wrote: --- > Try port scan your network assigned IP and not 127.0.0.1

Re: VHost Guidance

2015-04-20 Thread Jason Woods
Try port scan your network assigned IP and not 127.0.0.1. If something listens on 192.168.0.10:8080 for example, which is not 127.0.0.1, it will block requests for listening on "all interfaces" (0.0.0.0) which Nginx is trying to do, because one or more interface is in use for that port. netstat

Re: VHost Guidance

2015-04-20 Thread daBee
Hi there. This is my port scan from 8000 to 8080: Port Scan has started… Port Scanning host: 127.0.0.1 Port Scan has completed… I've never set anything up to use that port. Styopa Semenukha Wrote: --- > You already have an application li

Re: Disable caching the names in /etc/hosts in reverse proxy?

2015-04-20 Thread Jason Woods
> On 19 Apr 2015, at 01:05, xuhdev wrote: > > I'm using Nginx to act as a reverse proxy, where the backend is a name > defined in /etc/hosts. However, Nginx does not react to the changes made in > /etc/hosts until restarted. Is it possible to disable caching the names in > /etc/hosts in reverse

Re: VHost Guidance

2015-04-20 Thread Styopa Semenukha
You already have an application listening on port 8080. You can find it using netstat(1). On Monday, April 20, 2015 01:34:51 PM daBee wrote: > Hi folks. > > Brand new to nginx. I'm trying to run 3 vhosts on my workstation to get > familiar with nginx. > > alpha > bravo > charlie > > I'm using

Re: Intermittent SSL Handshake issues on Ubuntu 12.04 and Nginx

2015-04-20 Thread Maxim Dounin
Hello! On Sun, Apr 19, 2015 at 06:08:35PM -0400, rPawel wrote: > Hi Guys, > > I posted originally my issue on askubuntu but I think this will be a better > place > > http://askubuntu.com/questions/611418/intermittent-ssl-handshake-issues-on-ubuntu-12-04-and-nginx. > > Original post > -

VHost Guidance

2015-04-20 Thread daBee
Hi folks. Brand new to nginx. I'm trying to run 3 vhosts on my workstation to get familiar with nginx. alpha bravo charlie I'm using bravo in the main nginx.conf pointing to /var/www/alpha/ bravo and charlie are in settings/vhosts.conf into /var/www/bravo and /var/www/charlie Upon trying to

Re: Disable caching the names in /etc/hosts in reverse proxy?

2015-04-20 Thread B.R.
There is no 'cache' per se, but rather remembered DNS results, much like you do when you deal with domain names to avoid putting to high a burden on NS resolvers. nginx resolves names on start or reload. The commercial version added a feature to update names periodically (resolve option of the ser

Re: open socket #84 left in connection

2015-04-20 Thread shahzaib shahzaib
I have also enabled debug logging and found 'Resource temporarily unavailable' messages. Below is the reference sample : 2015/04/20 18:41:29 [debug] 12917#0: *2711 event timer add: 18: 15000:1429537304304 2015/04/20 18:41:29 [debug] 12917#0: *2711 post event 00A372D0 2015/04/20 18:41:29 [d

Re: license information of component nginx-1.7.9

2015-04-20 Thread Maxim Dounin
Hello! On Mon, Apr 20, 2015 at 10:53:37AM +0530, Sathish, Karthika IN BLR STS wrote: > Hello experts, > > I am planning to use the component nginx-1.7.9 and came across a > file ngx_md5.c (nginx-1.7.9.tar\nginx-1.7.9\src\core\ngx_md5.c). > Can I know under which license this file is licensed?

open socket #84 left in connection

2015-04-20 Thread shahzaib shahzaib
Hi, We're using nginx to upload and serve videos files around 1GB of file size via http. We've been receiving complains from some customers that uploading has some issue and sometimes user are unable to upload videos successfully. Server is installed with Nginx-1.4.7+php-fpm, ffmpeg, MP4Box. On

Re: rewrite rules issue

2015-04-20 Thread Francis Daly
On Mon, Apr 20, 2015 at 04:12:11AM -0400, nicocolt wrote: Hi there, > I have set a new server block, but i'm facing with the initial problem. > > So let me re-explain it. > > Now i have: > > server name stuff.domain.fr > root /var/www/domain.fr/web/subdomain; On your test system which shows t

Re: rewrite rules issue

2015-04-20 Thread nicocolt
Hi Francis, I have set a new server block, but i'm facing with the initial problem. So let me re-explain it. Now i have: server name stuff.domain.fr root /var/www/domain.fr/web/subdomain; In the subdomain directory i have foo firectory /var/www/domain.fr/web/subdomain/foo/ so now in my browse

FTP reverse proxy

2015-04-20 Thread camexin
Hi all, I'm discovering Nginx. Is this product can work as reverse proxy FTP ? If no, do you know a product with this function ? Thanks François Posted at Nginx Forum: http://forum.nginx.org/read.php?2,258207,258207#msg-258207 ___ nginx mailing list