[users@httpd] Static IP

2014-07-09 Thread Giovanni Bianchini
Dear Group This is such a dumb question I am almost afraid to ask because I should know this after so many years but old age has it's way of extracting revenge for years of abuse. I have a windows 8 machine with Apache 2.2.25 - no issues. I connect to the internet via a dialup modem however

Re: [users@httpd] Static IP

2014-07-09 Thread Edgar Pettijohn
It should be this simple: Listen 127.0.0.1:(port to use) On 07/09/2014 05:26 AM, Giovanni Bianchini wrote: Dear Group This is such a dumb question I am almost afraid to ask because I should know this after so many years but old age has it's way of extracting revenge for years of abuse.

Re: [users@httpd] mod_proxy_fcgi not honouring .htaccess, work around needed.

2014-07-09 Thread Edgar Pettijohn
I'm glad you found it. On 07/08/2014 11:17 PM, Sergei Franco wrote: Hi Edgar, I found that I was wrong about .htaccess not working inside of Directory tag: RewriteMap and standard rewrite lookup of the user dirs goes here Directory /PATH_TO_WWW/* Standard directory

Re: [users@httpd] Windows Apache 2.4.9 restarts itself

2014-07-09 Thread Mar Imp
hi, this is the answer I got from an apachelounge guy: Does not build with the patch at http://svn.apache.org/viewvc?view=revisionrevision=1606368 Error85error C2065: 'my_generation' : undeclared identifier E:\VC11\Win64\httpd-2.4.9\server\mpm\winnt\child.c1051 Error86

Re: [users@httpd] Windows Apache 2.4.9 restarts itself

2014-07-09 Thread Jeff Trawick
On Wed, Jul 9, 2014 at 7:36 AM, Mar Imp marimp...@gmail.com wrote: hi, this is the answer I got from an apachelounge guy: Does not build with the patch at http://svn.apache.org/viewvc?view=revisionrevision=1606368 Error85error C2065: 'my_generation' : undeclared identifier

Re: [users@httpd] mod_proxy_fcgi not honouring .htaccess, work around needed.

2014-07-09 Thread Sergei Franco
Hi, It appears that the problem is not solved. Here is a scenario where it fails: having .htaccess with RewriteEngine On (or any RewriteRule) will disable RewriteRules defined inside of the Directory in the site conf. How to replicate: Have a basic Directory /var/www/site with any simple

Re: [users@httpd] mod_proxy_fcgi not honouring .htaccess, work around needed.

2014-07-09 Thread Sergei Franco
Hi, I believe I figrued this out (finally I hope :)). The real solution to this problem is not putting rewrite rule for proxy to php-fpm in Directory but to do the following: RewriteCond %{REQUEST_URI} -U RewriteRule (.*\.php)$ fcgi://IP:PORT/$1 [P,L] Outside of the Directory tags and inside