Re: [users@httpd] Apache with OpenSSL 3 compiled for FIPS - SSLFIPS invalid

2022-10-24 Thread Joshua Smith
That was it. Thanks Yann! Josh From: Yann Ylavic Date: Friday, October 21, 2022 at 5:26 AM To: users@httpd.apache.org Subject: Re: [users@httpd] Apache with OpenSSL 3 compiled for FIPS - SSLFIPS invalid On Fri, Oct 21, 2022 at 2:07 AM Joshua Smith wrote: > > With that in mind, I’m co

[users@httpd] Apache with OpenSSL 3 compiled for FIPS - SSLFIPS invalid

2022-10-20 Thread Joshua Smith
I’m trying to build httpd 2.4.54 against OpenSSL 3.0.5 compiled for FIPS. I’ve followed the OpenSSL and httpd build docs, but when I turn on the SSLFIPS directive in my config, I still get an error message saying “SSLFIPS invalid, rebuild httpd and openssl compiled for FIPS”. A Google search

RE: [users@httpd] Deny ip address didn't work

2015-05-05 Thread Joshua Smith
-Original Message- From: Eric Covener [mailto:cove...@gmail.com] Sent: Tuesday, May 05, 2015 5:15 To: users@httpd.apache.org Subject: Re: [users@httpd] Deny ip address didn't work On Mon, May 4, 2015 at 7:33 PM, Joshua Smith joshuasm...@scbwi.org wrote: In both cases, when i monitored my site

[users@httpd] Deny ip address didn't work

2015-05-04 Thread Joshua Smith
Hi, I tried both of the following methods to block an ip address, but neither worked. In .htaccess, I put: Order Deny,Allow Deny from 123.123.123.123 and RewriteCond %{REMOTE_ADDR} ^123.123.123.123 RewriteRule .* /maintenance.html [R=503,L] (I do have the mod_rewrite module

RE: [users@httpd] Deny ip address didn't work

2015-05-04 Thread Joshua Smith
using? Apache 2.4 changed the access control directives unless you specifically enable the old style: http://httpd.apache.org/docs/2.4/upgrading.html#access Also, make sure you have the correct AllowOverride statements. - Y On Mon, May 4, 2015 at 7:33 PM, Joshua Smith joshuasm...@scbwi.org