nginx control panel

2014-12-15 Thread Anoop Alias
Hi, One of the problems that nginX had in adoption was the lack of support in mainstream webhosting control panel's which powers a very large chunk of the Internet . I would like to announce http://ndeploy.in/ which can be used to achieve a full nginx control panel for deploying PHP-FPM, PYTHON, R

Re: Issue in ngx_http_parse_request_line

2014-12-15 Thread akamatgi
Hi Maxim/Valentin, Thanks for your response. Both port_start and port_end are being used by the mod_security nginx module. Failure to set port_start is causing a Segmentation Violation when mod_security is enabled and a request with absolute URI is sent. Thanks, -anirudh Posted at Nginx Forum: ht

Re: SPDY: nginx/1.6.2: proxy_pass does not work when https is used

2014-12-15 Thread Payam Chychi
On 2014-12-15, 4:18 PM, Valentin V. Bartenev wrote: On Tuesday 16 December 2014 00:05:03 Yury Kirpichev wrote: Hi, I've got a problem when tried to proxy spdy traffic to host via https protocol. My config is simple like that: location /https/test { proxy_set_header X-Real-IP $remote_a

Re: SPDY: nginx/1.6.2: proxy_pass does not work when https is used

2014-12-15 Thread Valentin V. Bartenev
On Tuesday 16 December 2014 00:05:03 Yury Kirpichev wrote: > Hi, > > I've got a problem when tried to proxy spdy traffic to host via https > protocol. > > My config is simple like that: > > > location /https/test { > > proxy_set_header X-Real-IP $remote_addr; > > proxy_set_header Host

Re: nginx: [emerg] unknown directive "upload_pass" after dist-upgrade from Ubuntu 12.04 LTS to 14.04 LTS

2014-12-15 Thread Ben Johnson
On 12/13/2014 7:10 PM, Valentin V. Bartenev wrote: > On Saturday 13 December 2014 18:58:54 Ben Johnson wrote: > [..] >> Hello, >> >> I apologize for the 4-month delay in responding. :) >> >> In particular, I need to have the ability to track upload progress in a >> manner that is conducive to displ

Re: Efficient CRL checking at Nginx

2014-12-15 Thread Maxim Dounin
Hello! On Mon, Dec 15, 2014 at 02:48:03PM -0500, sandeepkolla99 wrote: > Hi, >I want to check the validity of a client certificate against CRL. So, I > have defined in nginx.cong as follows > > listen 80; > listen 443 ssl; > server_name localhost; >

SPDY: nginx/1.6.2: proxy_pass does not work when https is used

2014-12-15 Thread Yury Kirpichev
Hi, I've got a problem when tried to proxy spdy traffic to host via https protocol. My config is simple like that: location /https/test { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_pass https://www.something.com/test; } When request is performe

Efficient CRL checking at Nginx

2014-12-15 Thread sandeepkolla99
Hi, I want to check the validity of a client certificate against CRL. So, I have defined in nginx.cong as follows listen 80; listen 443 ssl; server_name localhost; ssl_certificate serverCert.pem; ssl_certificate_key serverKey.key; ssl_c

Re: nginx with proxy_cache_use_stale not returning from cache when connection refused

2014-12-15 Thread Maxim Dounin
Hello! On Mon, Dec 15, 2014 at 12:28:39PM -0500, jurerickporras wrote: > i have the same problem . how to fix this please help As already explained in this thread, the "fix" is to make sure the response is in cache. If it's there, nginx will return it once configured to do so. -- Maxim Doun

Re: Re: nginx is eating my client request - multipart/form-data file upload

2014-12-15 Thread Jason H'
Thanks. I have a new thoery. When i test on my local machine it's fast enough to get the request off. But on a remote machine the request takes longer and the object is being destroyed before all the data can be sent. I'll look into it... Thanks again. -- Sent from my Android pho

Re: nginx with proxy_cache_use_stale not returning from cache when connection refused

2014-12-15 Thread jurerickporras
i have the same problem . how to fix this please help Posted at Nginx Forum: http://forum.nginx.org/read.php?2,255408,255502#msg-255502 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx is eating my client request - multipart/form-data file upload

2014-12-15 Thread Maxim Dounin
Hello! On Mon, Dec 15, 2014 at 04:21:07PM +0100, Jason H wrote: > As requested. 100k debug log attached. I didn't see anything obviously wrong > in the log. Some comments about the log below. [...] > 2014/12/15 15:10:37 [debug] 21192#0: *10 http process request line > 2014/12/15 15:10:37 [deb

Re: nginx is eating my client request - multipart/form-data file upload

2014-12-15 Thread Jason H
As requested. 100k debug log attached. I didn't see anything obviously wrong in the log. Thanks for your help. nginx -V: nginx version: nginx/1.6.2 built by gcc 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC) TLS SNI support enabled configure arguments: --prefix=/usr/s

Re: Issue in ngx_http_parse_request_line

2014-12-15 Thread Maxim Dounin
Hello! On Mon, Dec 15, 2014 at 07:45:06AM -0500, akamatgi wrote: > Hi, > I can see an issue in assigning the port_start and port_end members of > ngx_http_request_t inside ngx_http_parse_request_line(). > If the request line has a absolute URI with explicit port specified, then > port_end is set

Re: Issue in ngx_http_parse_request_line

2014-12-15 Thread Valentin V. Bartenev
On Monday 15 December 2014 07:45:06 akamatgi wrote: > Hi, > I can see an issue in assigning the port_start and port_end members of > ngx_http_request_t inside ngx_http_parse_request_line(). > If the request line has a absolute URI with explicit port specified, then > port_end is set correctly insid

Re: nginx is eating my client request - multipart/form-data file upload

2014-12-15 Thread Maxim Dounin
Hello! On Sun, Dec 14, 2014 at 04:43:51PM +0100, Jason H wrote: > I am new to nginx, but am familar with low-level HTTP and > apache. When I try to do a multipart/form file upload, nginx > writes some of the client request body to disk, but never > finishes and it never passes it to the down/u

Issue in ngx_http_parse_request_line

2014-12-15 Thread akamatgi
Hi, I can see an issue in assigning the port_start and port_end members of ngx_http_request_t inside ngx_http_parse_request_line(). If the request line has a absolute URI with explicit port specified, then port_end is set correctly inside ngx_http_parse_request_line(): ... case sw_port:

Re: nginx + php-fpm = file not found

2014-12-15 Thread Francis Daly
On Sun, Dec 14, 2014 at 11:20:22PM -0500, khav wrote: Hi there, > mkdir -p /var/www/servergreek.com/public_html/www -worked > mkdir -p /home/servergreek.com/public_html/www - didn't worked > > Is an extra step required when using directories outside /var/www ? Your nginx server runs as once u