show/hide this revision's text 2 added 138 characters in body

DON'T use the firewall, you'll just complicate your implementation. The "correct" approach is to use .htaccess or set up authorisation in Apache Directory configuration.

It sounds like you want SSLRequire

SSLRequire (    %{SSL_CIPHER} !~ m/^(EXP|NULL)-

SSLVerifyClient      none
<Directory /\
        and %{SSL_CLIENT_S_DN_O} eq usr/local/apache/htdocs/secure/area>
SSLVerifyClient      require
SSLVerifyDepth       5
SSLCACertificateFile conf/ssl.crt/ca.crt
SSLCACertificatePath conf/ssl.crt
SSLOptions           +FakeBasicAuth
SSLRequireSSL
AuthName             "Snake Oil , Ltd." \
        and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", Authentication"
Dev"} \
        and %{TIME_WDAY} >= 1 and %{TIME_WDAY} <= 5 \
        and %{TIME_HOUR} >= 8 and %{TIME_HOUR} <= 20       ) \
       or %{REMOTE_ADDR} =~ m/^192\.76\.162\.[0-9]+$AuthType             Basic
AuthUserFile         /

Samplesusr/local/apache/conf/httpd.passwd require valid-user </Directory>

Howto: http://www.mail-archive.com/modssl-users@modssl.org/msg17274.htmlhttp://eregie.premier-ministre.gouv.fr/manual/mod/mod%5Fssl/ssl%5Fhowto.html

show/hide this revision's text 1

DON'T use the firewall, you'll just complicate your implementation. The "correct" approach is to use .htaccess or set up authorisation in Apache Directory configuration.

It sounds like you want SSLRequire

SSLRequire (    %{SSL_CIPHER} !~ m/^(EXP|NULL)-/ \
        and %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \
        and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", "Dev"} \
        and %{TIME_WDAY} >= 1 and %{TIME_WDAY} <= 5 \
        and %{TIME_HOUR} >= 8 and %{TIME_HOUR} <= 20       ) \
       or %{REMOTE_ADDR} =~ m/^192\.76\.162\.[0-9]+$/

Samples: http://www.mail-archive.com/modssl-users@modssl.org/msg17274.html