Archive for the tag 'Apache'

 

 

Oct 05 2010

Force HTTPS in Apache

Published by dave under Apache

Apache configuration that redirects HTTP to HTTPS URL for a webmail for instance: LoadModule rewrite_module modules/mod_rewrite.so RewriteEngine on # Activates Rewrite log RewriteLog “C:\Apache\logs\rewrite.log” RewriteLogLevel 1 RewriteCond %{HTTPS} off RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [R,L]

No responses yet

Sep 26 2006

Apache Authentication against Active Directory

Published by dave under Apache,ldap

A typical setup in a company consists of Windows clients authenticating on a 2000 or 2003 server running Active Directory. Many also have an Apache server on which they could host their Intranet or other critical information. Talking about critical information, there are good chances access should be restricted to certain groups of people in [...]

5 responses so far