Re: [nginx-announce] nginx-1.3.13

2013-02-19 Thread Kevin Worthington
Hello Nginx Users, Now available: Nginx 1.3.13 For Windows http://goo.gl/zbUIy (32-bit and 64-bit versions) These versions are to support legacy users who are already using Cygwin based builds of Nginx. Officially supported native Windows binaries are at nginx.org. Announcements are also availab

Re: Nginx redirect domain and sub-domain without www

2013-02-19 Thread Francis Daly
On Tue, Feb 19, 2013 at 04:54:46PM -0500, la_chouette wrote: Hi there, > for saas web application project I need to redirect subdomains to a specific > directory (app-saas /) without the www. > > The domain name must also be without redirecting to the www root. I'm afraid that I don't understan

Nginx redirect domain and sub-domain without www

2013-02-19 Thread la_chouette
Hello, for saas web application project I need to redirect subdomains to a specific directory (app-saas /) without the www. The domain name must also be without redirecting to the www root. Ex. www.domain.tdl to domain.tdl www.sub.domain.tdl to sub.domain.tdl www |-- index.php (domain.tdl,

Re: nginx serving R scripts via CGI/FastRWeb

2013-02-19 Thread Francis Daly
On Tue, Feb 19, 2013 at 12:47:23PM +, Stefan Parvu wrote: Hi there, This location: > location ~ ^/cgi-bin/.*\.cgi$ { will only match some requests that end in ".cgi" (before the ?, if that applies). What you possibly want is a separate location just for your "R" requests. Somethin

Re: SPDY Patch fails to compile

2013-02-19 Thread Valentin V. Bartenev
On Tuesday 19 February 2013 21:02:01 manacit wrote: > Attempting to compile the SPDY patch with the new 1.3.13 release gives: > > $ make > make -f objs/Makefile > make[1]: Entering directory `/home/nick/src/nginx-1.3.13' > cc -c -pipe -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g >

SPDY Patch fails to compile

2013-02-19 Thread manacit
Attempting to compile the SPDY patch with the new 1.3.13 release gives: $ make make -f objs/Makefile make[1]: Entering directory `/home/nick/src/nginx-1.3.13' cc -c -pipe -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g -I src/core -I src/event -I src/event/modules -I src/os/unix -I

Re: nginx serving R scripts via CGI/FastRWeb

2013-02-19 Thread Stefan Parvu
> So Im on option 1: CGI. The client will be this binary which somehow needs to > be > executed for each R script. I placed the Rcgi under cgi.bin directory and > rename it > as R.cgi. > and I forgot to mention for CGI Im using FcgiWrap: http://nginx.localdomain.pl/wiki/FcgiWrap stefan _

Re: 'no input file specified' on LEMP setup

2013-02-19 Thread mottwsc
I was missing an update in the config file, so your guidance helped. Thanks. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,236318,236349#msg-236349 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx serving R scripts via CGI/FastRWeb

2013-02-19 Thread Stefan Parvu
On 11:22 Tue 19 Feb , Harold Sinclair wrote: > Sounds like you ought to try writing a wrapper script ending in .cgi in the > cgi dir that grabs the query string and hands the job off to the R > executable. Not sure if R is required in the cgi-bin directory. You might > have to enable symlinking

Re: nginx serving R scripts via CGI/FastRWeb

2013-02-19 Thread Harold Sinclair
Sounds like you ought to try writing a wrapper script ending in .cgi in the cgi dir that grabs the query string and hands the job off to the R executable. Not sure if R is required in the cgi-bin directory. You might have to enable symlinking out for it to work. On Tue, Feb 19, 2013 at 9:49 AM, S

Re: How about an nginx repository mirror list?

2013-02-19 Thread Jonathan Matthews
On 19 February 2013 15:46, antituhan wrote: > I see here http://wiki.nginx.org/Install for the Nginx Repository, especially > RHEL/CentOS don't have any mirror likes IP Based to Location. Or, is there > a plan to build it? I can't parse what you wrote. Please rewrite it more clearly. -- Jonath

How about an nginx repository mirror list?

2013-02-19 Thread antituhan
I see here http://wiki.nginx.org/Install for the Nginx Repository, especially RHEL/CentOS don't have any mirror likes IP Based to Location. Or, is there a plan to build it? - [dae...@antituhan.com ~]# -- View this message in context: http://nginx.2469901.n2.nabble.com/How-about-an-nginx-r

nginx-1.3.13

2013-02-19 Thread Maxim Dounin
Changes with nginx 1.3.1319 Feb 2013 *) Change: a compiler with name "cc" is now used by default. *) Feature: support for proxying of WebSocket connections. Thanks to Apcera and CloudBees for sponsoring this work. *) Feature: the "auth_b

Re: nginx serving R scripts via CGI/FastRWeb

2013-02-19 Thread Stefan Parvu
On 08:50 Tue 19 Feb , Harold Sinclair wrote: > Does the R cgi script filename end in .cgi ? That's what you specify, it > appears. No, it does not end with cgi since the R scripts will not be called directly by nginx. As I understood I should call the R scripts like: http://localhost/cgi-bin

Re: nginx serving R scripts via CGI/FastRWeb

2013-02-19 Thread Harold Sinclair
Does the R cgi script filename end in .cgi ? That's what you specify, it appears. On Tue, Feb 19, 2013 at 7:47 AM, Stefan Parvu wrote: > Hi, > > Anyone here testing, experimenting with R and nginx ? > Im trying to setup nginx to serve R scripts via > CGI using Rserve, FastRWeb modules as descri

Re: Limit request + whitelist = not using response code from backend? 0.8.54

2013-02-19 Thread dreamwerx
Worked perfect! Thanks again. On Tue, 19 Feb 2013, Maxim Dounin wrote: Hello! On Tue, Feb 19, 2013 at 02:05:46PM +0100, DreamWerx wrote: Hi all, I'm hoping someone can help me with a small issue. I'm trying to implement rate limiting with a whitelist, and all in all it seems to be worki

Re: Limit request + whitelist = not using response code from backend? 0.8.54

2013-02-19 Thread Maxim Dounin
Hello! On Tue, Feb 19, 2013 at 02:05:46PM +0100, DreamWerx wrote: > Hi all, > > I'm hoping someone can help me with a small issue. I'm trying to > implement rate limiting with a whitelist, and all in all it seems to > be working, but > the wrong response code is being sent back to the browser.

Limit request + whitelist = not using response code from backend? 0.8.54

2013-02-19 Thread DreamWerx
Hi all, I'm hoping someone can help me with a small issue. I'm trying to implement rate limiting with a whitelist, and all in all it seems to be working, but the wrong response code is being sent back to the browser. For example if the apache backend sends a 302 redirect response, nginx still se

nginx serving R scripts via CGI/FastRWeb

2013-02-19 Thread Stefan Parvu
Hi, Anyone here testing, experimenting with R and nginx ? Im trying to setup nginx to serve R scripts via CGI using Rserve, FastRWeb modules as described here: http://jayemerson.blogspot.fi/2011/10/setting-up-fastrwebrserve-on-ubuntu.html My nginx is configured like: location ~ ^/cgi-b

Re: *** glibc detected *** nginx: master process /data/nginx/sbin/nginx -c /data/nginx/conf/nginx.conf: free(): invalid pointer: 0x00000000005b9980 ***

2013-02-19 Thread Anton Yuzhaninov
On 02/19/13 16:26, disney2002 wrote: I got a Serious problem,here is the nginx config: nginx version: nginx/0.8.55 0.8.55 is very old, try to upgrade to latest stable - 1.2.7 -- Anton Yuzhaninov ___ nginx mailing list nginx@nginx.org http://mailma

Re: installing nginx on centos should be straightforward

2013-02-19 Thread mottwsc
OK, Steve - thanks for your help. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,236254,236317#msg-236317 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Reverse proxy configuration help

2013-02-19 Thread jims
Jonathan Matthews Wrote: --- > On 18 February 2013 15:06, jims wrote: > > I am new to nginx, it being recommended to solve a problem. > > [ Having read your mail, this kind of reverse proxying is exactly what > nginx is very good at; I think you

*** glibc detected *** nginx: master process /data/nginx/sbin/nginx -c /data/nginx/conf/nginx.conf: free(): invalid pointer: 0x00000000005b9980 ***

2013-02-19 Thread disney2002
I got a Serious problem,here is the nginx config: nginx version: nginx/0.8.55 built by gcc 4.1.2 20080704 (Red Hat 4.1.2-52) TLS SNI support enabled configure arguments: --user=www --group=www --prefix=/data/nginx/ --with-google_perftools_module --with-http_stub_status_module --with-openssl=/usr/l

Re: nginx can't run php only 'PAGE NOT FOUND'

2013-02-19 Thread leejaycoke
Of course; because /usr/share/nginx/html workds well. everytime I restart nginx service, after save config file. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,236323,236328#msg-236328 ___ nginx mailing list nginx@nginx.org http://mailman.ng

Re: Upgrading Executable on the Fly - wrong docs?

2013-02-19 Thread Ruslan Ermilov
On Tue, Feb 12, 2013 at 03:01:39PM -0500, piotr.dobrogost wrote: > Ruslan, thanks for quick reply. > > I have some trouble comparing the new wording with the previous one as it > looks like your change went live at http://nginx.org/en/docs/control.html so > I do not have the old one to compare any

Re: nginx can't run php only 'PAGE NOT FOUND'

2013-02-19 Thread Steve Holdoway
On 19/02/13 23:13, leejaycoke wrote: I'm sorry for my English... nginx has default html page it's /usr/share/nginx/html. But I changed custom new path it's /home/norrent/public_html. did you restart nginx to enable the new config? ___ nginx mailing

nginx can't run php only 'PAGE NOT FOUND'

2013-02-19 Thread leejaycoke
I'm sorry for my English... nginx has default html page it's /usr/share/nginx/html. But I changed custom new path it's /home/norrent/public_html. If I put php and html files in the original path, works well. But if I put php and html files in the custom path, only html files work. and php files s

[PROPOSAL] Looking for contributors to write a modular book on Nginx in French

2013-02-19 Thread D-BookeR
Hello, I'm looking for French-writing contributors and authors for writting a modular book on Nginx (in French). All experiences may be interesting, since a part of the book will be dedicated to use cases. The book will be published by Les éditions D-Booker, that I set up recently. For more info