<?xml version="1.0" encoding="utf-8"?> 
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/"
     version="2.0">

    <channel>

        <title>Mark C Allen - Apache Articles</title>
        <link>http://www.markcallen.com/apache/apache-articles</link>
        <description></description>
        <language>en-us</language>
        <generator>Plone 2.0</generator>

        
            
                  <item>
                      <title>Sending all requests from http to https</title>
                      <link>http://www.markcallen.com/apache/add-the-following-entry-to-the-virtualhost</link>
                      <description></description>
                      <author>mallen</author>
                      <pubDate>Sat, 16 Feb 2008 20:43:38 -0800</pubDate>
                      
   <content:encoded>
       <![CDATA[
<p>
                Add the following lines to the VirtualHost directive:<br /></p>
<br />
    RewriteEngine on<br />
    # Redirect any traffic to https<br />
    RewriteRule ^/(.*)$        https://%{HTTP_HOST}/$1  [L,R]]]>
   </content:encoded>
 
                  </item>

            
	   	
        
        
            
                  <item>
                      <title>Security failure. Data decryption error. When using IE on a Mac</title>
                      <link>http://www.markcallen.com/apache/security-failure-data-decryption-error-when-using-ie-on-a-mac</link>
                      <description></description>
                      <author>mallen</author>
                      <pubDate>Mon, 13 Nov 2006 22:43:38 -0800</pubDate>
                      
   <content:encoded>
       <![CDATA[<p>On Mac OS X when opening a new IE window from a site running under
https there is no content in the window and the following error message
is displayed:</p><img class="image-left" src="../Members/marks-folder/images/mac_decryption_error.gif" alt="Mac Decryption Error" /><br /><p><br /></p><p><br /></p><p><br /></p><p><br /></p><p><br /></p><br /><p><br /></p><p>
This can be correct by changing the SSLSessionCache in the Apache httpd.conf file.<br />
</p><p><br />
The error shows up when SSLSessionCache is set to none.  If it is changed to:<br />
</p><p><br />
SSLSessionCache         dbm:/logs/ssl_scache<br />
</p><p><br />
where  is where apache is installed.<br />
</p><p><br />
This will correct the problem.
                                </p>]]>
   </content:encoded>
 
                  </item>

            
	   	
        
        
            
                  <item>
                      <title>Adding LDAP Authentication to a Site</title>
                      <link>http://www.markcallen.com/apache/adding-ldap-authentication-to-a-site</link>
                      <description></description>
                      <author>mallen</author>
                      <pubDate>Mon, 13 Nov 2006 22:45:45 -0800</pubDate>
                      
   <content:encoded>
       <![CDATA[<p>
                Add the following entry to the VirtualHost<br />
</p><br />
&lt;Directory "/var/www/html"&gt;<br />
   order allow,deny<br />
   allow from all<br />
   AuthName "Staff only"<br />
   AuthType Basic<br />
   AuthLDAPURL ldap://localhost/dc=example,dc=com<br />
   require valid-user<br />
&lt;/Directory&gt;]]>
   </content:encoded>
 
                  </item>

            
	   	
        
        
            
                  <item>
                      <title>Using Java Web Start with Opera</title>
                      <link>http://www.markcallen.com/apache/using-java-web-start-with-opera</link>
                      <description></description>
                      <author>mallen</author>
                      <pubDate>Mon, 13 Nov 2006 22:40:14 -0800</pubDate>
                      
   <content:encoded>
       <![CDATA[<p>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:</p><p><a href="http://www.opera.com/support/search/supsearch.dml?index=470">http://www.opera.com/support/search/supsearch.dml?index=470</a></p>]]>
   </content:encoded>
 
                  </item>

            
	   	
        


    </channel>

</rss>

