Re: [users@httpd] Access control with source IP addresses

2014-11-22 Thread Bu Xiaobing
Hi rainer, Can't understand what do you mean. I try to write the acl as the below lines, but it can't work. RewriteCond %{QUERY_STRING} ^manage$ Location /m/index.php Order allow,deny Allow from specified_IP_address /Location Sury On 2014-11-21 19:48, Rainer M. Canavan wrote: On Nov

Re: [users@httpd] questions and suggestions related to authentication

2014-11-22 Thread Don Cohen
Eric Covener writes: On Thu, Nov 20, 2014 at 2:22 PM, Don Cohen don-apa...@isis.cs3-inc.com wrote: Eric Covener writes: On Thu, Nov 20, 2014 at 1:31 PM, Don Cohen don-apa...@isis.cs3-inc.com wrote: However, I also am surprised that I don't see some more general module

[users@httpd] apache 2.4 on windows and mod_proxy_ajp tcp connection pool confusion

2014-11-22 Thread SÅ‚awomir Kluz
Hi, I'm using the latest windows apache 2.4 (provided by apachelounge) together with tomcat 7 connected using mod_proxy_ajp. No custom configuration, just enabling mod_proxy, mod_proxy_ajp and define: ProxyPass / ajp://127.0.0.1:8009/ ProxyPassReverse / ajp://127.0.0.1:8009/ After opening

Re: [users@httpd] questions and suggestions related to authentication

2014-11-22 Thread Eric Covener
On Sat, Nov 22, 2014 at 3:55 AM, Don Cohen don-apa...@isis.cs3-inc.com wrote: I just put mod_authnz_fastcgi into google and got ONE result - Sorry, it's mod_authnz_fcgi. http://httpd.apache.org/docs/current/mod/ -- Eric Covener cove...@gmail.com

[users@httpd] set up a 302 Location in ap_hook_translate_name

2014-11-22 Thread nik600
Dear all i'm using a ap_hook_translate_name custom module to process some custom logic and decide the final name of the request. in some situation i'm putting a Location: http://foo.com/mypage header with apr_table_add(r-headers_out, Location, http://foo.com/mypage;); but the HTTP_STATUS

Re: [users@httpd] set up a 302 Location in ap_hook_translate_name

2014-11-22 Thread Eric Covener
On Sat, Nov 22, 2014 at 6:22 PM, nik600 nik...@gmail.com wrote: So, i've got 3 question: - is possible to set-up in this hook a REDIRECT_STATUS 302 - if yes, how ? - if no, what is the hook to use and how can i set the http status? Check out how mod_rewrite passes itself a hint between