Tagged Questions
16
votes
9answers
11k views
Tux, Varnish or Squid?
We need a web content accelerator for static images to sit in front of our Apache web front end servers
Our previous hosting partner used Tux with great success and I like the fact it's part of Red ...
4
votes
1answer
119 views
How do we configure symfony 1.4 to use it with Varnish?
I had a huge load on my servers yesterday, and, even if I worked on optimizing the performances before (I had a similar problem about 2 months ago), my servers couldn't handle the load (I have a ...
4
votes
1answer
144 views
Making Plone site temporarily static for high traffic peak
We know there is a surge of traffic hitting a Plone site on a certain day. Last time this happened we couldn't crank enough power out of Plone to make it run smoothly.
Now I am asking what kind of ...
2
votes
2answers
262 views
Strange problem getting $ENV{'QUERY_STRING'}
I'm having a strange problem here. I'm moving a (working) site to a new apache server to which I don't have direct access (I have to go through two people to get stuff done).
The site uses a perl ...
1
vote
0answers
55 views
Bad gateways with large POST uploads and my apache + varnish + plone setup
This is a rather complicated scenario, so I would highly appreciate any pointer to the correct direction.
So I have setup apache on server A to proxy https traffic το server B, that is a plone site ...
1
vote
0answers
92 views
Varnish MISS cache and Varnish control terminal is not responding at 192.168.56.102 on port 6082 [closed]
I am using varnish on one box (192.168.56.102) and apache on other box (192.168.56.105).
on varnish box - in /etc/varnish/default.vcl
backend default {
.host = "192.168.56.105";
.port = "80";
}
and ...
1
vote
2answers
815 views
Varnish: cache only specific domain
I have been Googling aggressively, but without luck.
I'm using Varnish with great results, but I would like to host multiple websites on a single server (Apache), without Varnish caching all of them.
...
1
vote
4answers
858 views
unset in Varnish - syntax error
I'm trying to hide the "Server" header returned by Apache on every request, from Varnish.
Using in sub vcl_fetch:
unset obj.http.Server;
on Varnish start I get:
Expected action, 'if' or '}'
...
0
votes
0answers
15 views
Run apache in default port [migrated]
I have ubuntu 11.04 and my apache was running on localhost but I tried to install varnish and have a ride on varnish . So I followed this tutorial and made changes. But after install I saw apache is ...
0
votes
0answers
14 views
Apache: Ignore IP-Based VirtualHost-configurations
I have this Plesk powered webserver with multiple IP's, let's say 192.168.1.2 and 192.168.1.3.
Plesk sets up by default IP-based vhost. However, everything works fine when I set the varnish backend ...
0
votes
1answer
150 views
varnish, apache and namebased virtual host with own ip addresses
I have a apache2-webserver with several name-based virtual hosts; each host has its own ip address, so the apache is not listening on *:80, but on 123.456.789.012:80.
Now I want to cache the websites ...
0
votes
2answers
111 views
Good way to choose between backends by Varnish depending on requested file existance
I have the installation with Apache2, nginx and Varnish above them. Varnish receives the request, determines what backend is it for (static goes to nginx, dynamic goes to Apache), fetches the response ...
0
votes
1answer
117 views
varnish don't resolve ESI in my localhost
varnish don't resolve ESI in my localhost:
i have similar configuration like other users in apache, but i send/get following headers:
Server Apache/2.2.21 (Debian)
X-Powered-By PHP/5.3.8-2
...
0
votes
2answers
122 views
Varnish default VCL access control list
After adding a simple acl to the top of default.vcl to restrict purge requests to localhost, Varnish fails to restart. My default VCL is otherwise unmodified. default.vcl is as follows:
backend ...
0
votes
1answer
169 views
Click on any link, redirect url to apache's port on varnish nginx apache2 stack
I have set up a server with Varnish at port 80, nginx at port 8081 and apache2 at 81. Varnish uses nginx in backend, nginx does a reverse proxy for apache2.
So when I click on ...
0
votes
1answer
176 views
Reverse Proxy dynamic webserver loading
Is there any way to dynamically load and unload webservers from a reverse proxy?
For example let's say I have a cluster of 100 apache servers and I want to patch the servers. I would like the have a ...