[users@httpd] mod_php to mod_fastcgi (hhvm_proxy_fcgi)

2015-05-08 Thread Roland RoLaNd
i am testing hhvm on my dev server; all works well between apache libapache2-mod-php5 though now that i am using hhvm rewrite rules are failing returning 404 which is expected as the requests URLs should be rewritten to their proper destination before going to fcgi://127.0.0.1:9000/var/www/htm

[users@httpd] virtual host precedence ?

2012-07-10 Thread Roland Roland
Can anyone help me out in understand how/why virtual host take precedence on the same ip ? like i always face an issue where two distinct virtual hosts are set. the first works, the second doesn't unless i bump it up so it becomes the first listed in the conf file. --

[users@httpd] apache stops serving pages on high load

2012-07-10 Thread Roland Roland
Dear all, I have "apache 1.3.33-6sarge3" running on debian as you guessed it. (This is a VM) Lately i've been facing an issue on high page request (more than 18/s ) that apache stops serving requests. and the only solution is to restart apache. where it works normally again till the next p

[users@httpd] apache2 -S -- More info ?

2012-06-05 Thread Roland Roland
Dear all, I have access to a server that serves more than 100 Virtual host. sometimes i'm in need to find the specific conf file for let's say a site that's x.y.domain.net if i grep -ri x.y.domain.net ./ # it's going to take forever and degrade the server performance as there's lots of small

RE: [users@httpd] mod rewrite question https to http

2012-02-02 Thread Roland RoLaNd
put the following rewrite rules: RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} iƱigo On Wed, 1 Feb 2012, Roland RoLaNd wrote: > > Dear all, > I'm a complete newbie to apache and i've inherited a virtual host setup.i > hav

[users@httpd] mod rewrite question https to http

2012-02-01 Thread Roland RoLaNd
Dear all, I'm a complete newbie to apache and i've inherited a virtual host setup.i have the need to redirect all traffic from https to http (443 to 80, yes that is correct) the relevant rewrite rules in httpd.conf are as such: # all other traffic is redirected to the SSL siteRewriteEng

RE: [users@httpd] syncing across web cluster

2012-01-23 Thread Roland RoLaNd
Mon, 23 Jan 2012 09:56:37 -0500 > From: m...@catseye.org > To: users@httpd.apache.org > CC: r_o_l_a_...@hotmail.com > Subject: Re: [users@httpd] syncing across web cluster > > On January 23, 2012 9:35 , Roland RoLaNd wrote: > > i've successfully setup web clustering be

[users@httpd] syncing across web cluster

2012-01-23 Thread Roland RoLaNd
Dear all, i've successfully setup web clustering between 7 web servers. now i'm having a prob where a user uploads a file, and it only exists on the server that his session landed on. I'm seeking your help in possible ways to propagate files uploaded across servers. Any advice would be appreciat