RE: Help for nginx proxy pass rule

2016-04-06 Thread Roni Baby
Perfect fix... Able to solve my issues.Thanks Francis The issue was, I configured these location blocks already in my config file location ~* ^.+\.(jpg|jpeg|gif|css|png|ico|zip|xspf|swf|ttf|woff|js)$ { for serving static files directly. It was over ride the location rule that I used It started

Re: Rewrite

2016-04-06 Thread tseveendorj
Thank you Francis. It is working now. Sent from my Samsung device Original message From: Francis Daly Date: 06/04/2016 07:48 (GMT+08:00) To: nginx@nginx.org Subject: Re: Rewrite On Tue, Apr 05, 2016 at 08:11:44PM +0900, tseveendorj wrote: Hi there, > request URL

Re: Bug in 1.9.14 or something else?

2016-04-06 Thread Maxim Dounin
Hello! On Wed, Apr 06, 2016 at 03:38:31PM -0400, jshare wrote: > I'm running a WordPress 4.4.2-based membership site on Ubuntu 12.04 LTS with > PHP 5.6.20. > > After upgrading to 1.9.14 (compiling from source with no errors or > warnings), I could no longer log in to my site, using Firefox/Chrom

Re: default server with custom 404

2016-04-06 Thread Francis Daly
On Wed, Apr 06, 2016 at 02:26:25PM +0100, Robin Becker wrote: Hi there, > I see this question has been asked and answered many times, but I am > unable to make it work. It seems to work for me. Are you certain that no caching in front of nginx is interfering with your tests? What do you see if

Re: Help for nginx proxy pass rule

2016-04-06 Thread Francis Daly
On Wed, Apr 06, 2016 at 06:58:07PM +0530, Roni Baby wrote: Hi there, > Yes the destination URl [https://www.xys.org/static/js/widget.js] is working > perfectly alone > Why it tried locally? I used proxypass rule for it. If I wanted to do > anything to enable proxy capability in my Nginx? Read ht

Bug in 1.9.14 or something else?

2016-04-06 Thread jshare
I'm running a WordPress 4.4.2-based membership site on Ubuntu 12.04 LTS with PHP 5.6.20. After upgrading to 1.9.14 (compiling from source with no errors or warnings), I could no longer log in to my site, using Firefox/Chrome/IE. Trying to login didn't timeout. Instead, fairly quickly, I would get

Re: bug in processing passwords with backslash in mail/imap proxy code

2016-04-06 Thread Дениска-редиска
for note, the client is saslauthd from cyrus-sasl package running with -a rimap   Цитирование Maxim Dounin : > Hello! > On Wed, Apr 06, 2016 at 06:32:25PM +0300, Дениска-редиска wrote: > > Hello, > > > > looks like there is a bug in nginx 1.8.1 in mail proxy code which used for > > authorizat

Re: bug in processing passwords with backslash in mail/imap proxy code

2016-04-06 Thread Maxim Dounin
Hello! On Wed, Apr 06, 2016 at 06:32:25PM +0300, Дениска-редиска wrote: > Hello, > > looks like there is a bug in nginx 1.8.1 in mail proxy code which used for > authorization: > backslash becomes stripped from password when quoted in imap command: > > * OK IMAP4 ready > p LOGIN "testdev" ",\R

bug in processing passwords with backslash in mail/imap proxy code

2016-04-06 Thread Дениска-редиска
Hello, looks like there is a bug in nginx 1.8.1 in mail proxy code which used for authorization: backslash becomes stripped from password when quoted in imap command: * OK IMAP4 ready p LOGIN "testdev" ",\REz=#tPc" p NO Invalid login or password p LOGIN "testdev" ,\REz=#tPc p OK [CAPABILITY

Re: Headers More module is not working in nginx-devel

2016-04-06 Thread Jim Ohlstein
Hello, On 4/6/16 8:53 AM, meteor8488 wrote: Thanks. You're right. After I load the module, it works. Another question is for now I have 3 modules -r-xr-xr-x 1 root wheel17K 4 6 07:27 ngx_http_geoip_module.so* -r-xr-xr-x 1 root wheel25K 4 6 07:27 ngx_http_headers_more_filter_mod

RE: Help for nginx proxy pass rule

2016-04-06 Thread Roni Baby
Yes the destination URl [https://www.xys.org/static/js/widget.js] is working perfectly alone Why it tried locally? I used proxypass rule for it. If I wanted to do anything to enable proxy capability in my Nginx? Thanks for your reply Roni -Original Message- From: nginx [mailto:nginx-boun

default server with custom 404

2016-04-06 Thread Robin Becker
I see this question has been asked and answered many times, but I am unable to make it work. On a server with multiple virtual hosts I wish to make a catchall which responds to everything with a 404 that reveals no information. I am running nginx version: nginx/1.8.1 on ubuntu 14.04. My catc

Re: Help for nginx proxy pass rule

2016-04-06 Thread Anoop Alias
Are you sure the location is working? abc.com/static/js/widget.js" failed (2: No such file or directory) - I think its trying to access that file locally and not via the proxy On Wed, Apr 6, 2016 at 4:14 PM, Roni Baby wrote: > HI, > > > > We have a WordPress site named it as https://www.abc.com;

Re: [nginx-announce] nginx-1.9.14

2016-04-06 Thread Kevin Worthington
Hello Nginx users, Now available: Nginx 1.9.14 for Windows https://kevinworthington.com/nginxwin1914 (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. Announce

Re: Headers More module is not working in nginx-devel

2016-04-06 Thread meteor8488
Thanks. You're right. After I load the module, it works. Another question is for now I have 3 modules -r-xr-xr-x 1 root wheel17K 4 6 07:27 ngx_http_geoip_module.so* -r-xr-xr-x 1 root wheel25K 4 6 07:27 ngx_http_headers_more_filter_module.so* -r-xr-xr-x 1 root wheel 328K 4 6

Help for nginx proxy pass rule

2016-04-06 Thread Roni Baby
HI, We have a WordPress site named it as https://www.abc.com; We are using Nginx as the web server for this site. I wanted to create a proxy pass rule like this https://www.abc.com/static/js/widget.js will be load from https://www.xys.org/static/js/widget.js without changing URL Here is

Re: Nginx proxy cache/temp folders empty when located inside /tmp on CentOS 7

2016-04-06 Thread Andrew Hutchings
Hi, This gives a good explanation of what you are observing: https://securityblog.redhat.com/2014/04/09/new-red-hat-enterprise-linux-7-security-feature-privatetmp/ Kind Regards Andrew On 06/04/16 05:39, fevangelou wrote: (First post in the Nginx forum, so please bear with me if it seems sligh