Apache Sending all requests from http to https Add the following lines to the VirtualHost directive: RewriteEngine on Redirect any traffic to https RewriteRule ^/(.*)$ https://%{HTTP_HOST}/$1 [L,R]
Apache Using Java Web Start with Opera Out of the box the Opera web browser is not setup to run jnlp files, therefore java webstart will not run properly. To fix this a new mime-type needs to be added to the browser. Follow instructions at: http://www.opera.com/support/search/supsearch.dml?index=470
Apache Adding LDAP Authentication to a Site Add the following entry to the VirtualHost <Directory "/var/www/html"> order allow,deny allow from all AuthName "Staff only" AuthType Basic AuthLDAPURL ldap://localhost/dc=example,dc=com require valid-user </Directory>