Re: proxy_redirect not working with "refresh"

2015-04-30 Thread John
-Original Message- >From: Francis Daly >Sent: Apr 30, 2015 4:11 AM >To: nginx@nginx.org >Subject: Re: proxy_redirect not working with "refresh" > > >Hi there, > >That's not a "Refresh" header field. > >That is something in the http response body. > >In general, nginx doesn't mess with the

Re: nginx Digest, Vol 66, Issue 45

2015-04-30 Thread silsurf Google
> On Apr 30, 2015, at 5:00 AM, nginx-requ...@nginx.org wrote: > > Send nginx mailing list submissions to > nginx@nginx.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://mailman.nginx.org/mailman/listinfo/nginx > or, via email, send a message with subject or b

Re: nginx-1.9.0

2015-04-30 Thread sekhemre
SRPMS please. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,258444,258554#msg-258554 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: how to separate robot access log and human access log

2015-04-30 Thread Francis Daly
On Mon, Apr 27, 2015 at 07:45:17PM -0400, meteor8488 wrote: Hi there, > I'm trying to separate the robot access log and human access log, so I'm > using below configuration: "if=" on the access_log line is what you want. > access_log /web/log/location_access.log main; "No 'if=' there" means "

Re: Installed nginx with iredmail; how to add web content & test without DNS change

2015-04-30 Thread Francis Daly
On Tue, Apr 28, 2015 at 08:17:42PM -0400, gariac wrote: Hi there, > Iredmail puts its html in /var/www. I put a test page in /var/www2 and > added a location line to point to it, but I'm confused on how to set this up > since it is like hosting two websites at the same IP address. Obviously I >

Re: [yet another] proxy question - rewrite URLs

2015-04-30 Thread Francis Daly
On Mon, Apr 27, 2015 at 11:05:53AM -0400, DigitalHermit wrote: Hi there, > I can successfully redirect the following using 301 returns: > location /webhost1/ { > return 301 [https]//$host$request_uri; > } I'm not sure that does what you indicated that you want it to do; but you also say tha

Re: Static files bad loading time

2015-04-30 Thread Francis Daly
On Sun, Apr 26, 2015 at 06:11:32AM -0400, grigory wrote: Hi there, > # Static files location > location ~* > ^.+\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|wav|bmp|rtf|js)$ So - you have your configuration; you make a request; sometimes you get the

Re: Trying to "see" my NGINX downloads folder via https?

2015-04-30 Thread Francis Daly
On Wed, Apr 29, 2015 at 04:56:18PM -0700, silsurf Google wrote: Hi there, > In order to download your files from your vpn, you will move the download > folder of deluge into nginx www folder. For example: downloads folder > (/usr/share/nginx/www/downloads). Your files will be accessible at > h

Re: proxy_redirect not working with "refresh"

2015-04-30 Thread Francis Daly
On Thu, Apr 30, 2015 at 02:43:14AM -0400, John wrote: Hi there, > http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_redirect says: > > "(proxy_redirect) Sets the text that should be changed in the “Location” and > “Refresh” header fields of a proxied server response." > > All exam