Re: Varnish5 / h2 Support

2017-03-16 Thread Leon Fauster
> Am 04.03.2017 um 20:24 schrieb Poul-Henning Kamp : > > In message <2fe9e296-bd63-490c-8cf3-0be73fb22...@googlemail.com>, Leon > Fauster > writes: > >> How experimental is this h2 support (as stated in the docs)? >> Should I deploy my prod system with varnish5 and h2

Re: varnish with apache mod_auth

2017-03-16 Thread Jason Price
I don't believe there's a trivial way to do this. Varnish will return the cached response to any IP address that comes calling. Even if the first request comes from a valid IP, which gets passed through via X-Forward or similar, and mod_auth is tweaked to respond to that, any subsequent request

varnish with apache mod_auth

2017-03-16 Thread Hernán Marsili
Hi, We are having an issue with VARNISH and apache mod_auth. Varnish is on port 80 serving users and Apache is the backend. We have servers restricting access only to authenticated users or certain IP addresses. Since we installed Varnish the issue is that we need to enable 127.0.0.1 as a

Re: 5.1.1 compile

2017-03-16 Thread Dridi Boukelmoune
> Has anyone seen this before? No, I believe you're the first to report that. Which platform are you building Varnish on? And how are you building Varnish? Dridi ___ varnish-misc mailing list varnish-misc@varnish-cache.org

Re: Setting stale content

2017-03-16 Thread Nicolas Delmas
Hi, There the link to the documentation : https://varnish-cache.org/docs/4.1/users-guide/vcl-grace.html Hope it's what you're looking for . *Nicolas Delmas* http://tutoandco.colas-delmas.fr/ 2017-03-16 16:19 GMT+01:00 Rodney Bizzell : >

Re: Server requirements for installing Varnish

2017-03-16 Thread varnish list
Hello And if you want to use another rpm then yum localinstall rpmfile_or_url On 16 Mar 2017 14:07, "Magical Wonders" wrote: > Great, thank you. I've signed up to the varnish-announce mailing list now. > :-) > > Best wishes, > > Myles > > On 16/03/2017 13:47, Dridi

Setting stale content

2017-03-16 Thread Rodney Bizzell
Hello, I wanted to know what subroutine should I set the stale content before after vcl_recv. This email (including any attachments) may contain confidential information intended solely for acknowledged recipients. If you think you have received this information in error, please reply to the

RE: Redirecting traffic to Varnish Cache Server

2017-03-16 Thread Rodney Bizzell
Ok thanks I actually changed it no big deal From: Guillaume Quintard [mailto:guilla...@varnish-software.com] Sent: Thursday, March 16, 2017 10:38 AM To: Rodney Bizzell ; varnish-misc Subject: RE: Redirecting traffic to Varnish Cache Server

RE: Redirecting traffic to Varnish Cache Server

2017-03-16 Thread Guillaume Quintard
Don't forget to reply to the ML too :-) No need to return hash, because you already returned synthetic in that case. By the way, Dridi told me that vcl actually support "else if", "elsif" and "elif", so you can disregard my remark about it. On Mar 16, 2017 15:28, "Rodney Bizzell"

Re: Server requirements for installing Varnish

2017-03-16 Thread Magical Wonders
Great, thank you. I've signed up to the varnish-announce mailing list now. :-) Best wishes, Myles On 16/03/2017 13:47, Dridi Boukelmoune wrote: On Thu, Mar 16, 2017 at 2:33 PM, Magical Wonders wrote: Ok, I think I understand. So installing 5.1 when the new

Re: Server requirements for installing Varnish

2017-03-16 Thread Dridi Boukelmoune
On Thu, Mar 16, 2017 at 2:33 PM, Magical Wonders wrote: > Ok, I think I understand. So installing 5.1 when the new details are > available, all the required packages will automatically be installed? > > Is this the page that will give the new details? - >

Re: Server requirements for installing Varnish

2017-03-16 Thread Magical Wonders
Ok, I think I understand. So installing 5.1 when the new details are available, all the required packages will automatically be installed? Is this the page that will give the new details? - https://varnish-cache.org/releases/install_redhat.html#install-redhat Myles On 16/03/2017 13:02,

Re: Server requirements for installing Varnish

2017-03-16 Thread Dridi Boukelmoune
On Thu, Mar 16, 2017 at 1:37 PM, Guillaume Quintard wrote: > Doesn't "yum install varnish" just work? The package manager should pull all > the required packages for you. Yes, only after you set up the repo, the rpm command does that but starting with 5.1 that

Re: varnish caching with jsessionid being set

2017-03-16 Thread Dridi Boukelmoune
On Wed, Mar 15, 2017 at 6:30 PM, Jim Louis wrote: > > Hello, > > I'm fairly new to varnish and have used it successfully in the past. Here > they would like to use it but they have jsessionid tracking thru multiple > VIPs. It seems that these jsessionids are being

Re: Server requirements for installing Varnish

2017-03-16 Thread Danila Vershinin
Those are for building / compiling Varnish on your server. If you’re installing Varnish from its official repository, you don’t need any extras. > autoconf > automake > jemalloc-devel > libedit-devel > libtool > ncurses-devel > pcre-devel > pkgconfig > python-docutils > python-sphinx > graphviz

Server requirements for installing Varnish

2017-03-16 Thread Magical Wonders
Hello Guys, I'm searching for some step by step instructions for the installation of Varnish, but I'm finding so many variations, it's making my head spin! I have a VPS running CENTOS 6.8 x86_64 virtuozzo. I found this resource which looks fairly straightforward as I do have cPanel/WHM -

Re: Custom Permalinks Setting in Wordpress

2017-03-16 Thread Magical Wonders
Yes, they are relevant for SEO, and opinions from experts vary as to which is the most effective. Yoast and many others suggest keeping it simple by using /%postname%/. However, others argue against that and suggest different structures! It's hard to know who is right sometimes! :-)

Re: Redirecting traffic to Varnish Cache Server

2017-03-16 Thread Guillaume Quintard
Hi, "elsif" needs to be "else if", and I would add: else { return(synth(404)); } at the end to make sure you only serve content from these two domains. -- Guillaume Quintard On Tue, Mar 14, 2017 at 9:46 PM, Rodney Bizzell wrote: > So I have setup a basic

Re: Custom Permalinks Setting in Wordpress

2017-03-16 Thread Nicolas Delmas
Of course, the type of Permalinks is important for SEO. I'm not enought good in this domain to suggest one more than the other. *Nicolas Delmas* http://tutoandco.colas-delmas.fr/ 2017-03-15 21:17 GMT+01:00 Magical Wonders : > The way