You could switch to nginx and fastcgi (see
http://library.linode.com/lemp-guides/u ... .04-lucid/)
Otherwise it's the same as that doc except when you get to the bit about fcgi you'll need to use proxy_* options instead of fastcgi_*
Simple config would be
location ~ \.php$
{
proxy_pass
http://localhost:81;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
That assumes that you set apache to listen on port 81.
_________________
Paid supportHow to ask for help
1. Give details of your problem
2. Post any errors
3. Post relevant logs.
4. Don't hide details i.e. your domain, it just makes things harder
5. Be polite or you'll be eaten by a grue