Entries Tagged as 'OS X'

Enabling SSL Connections for Apache Virtual Hosts on OS X 10.5

OS X , Apache No Comments »

Today, I was able to get https working for localhost connections after following these step by step instructions for creating and signing a cert and updating httpd.conf and httpd-ssl.conf on Mac OS X Hints. Problem is, I need https for vhosts. When trying to connect to a local vhost over https, I encountered the following error: Error code: ssl_error_rx_record_too_long). Much more googling turned up the answer. You need to turn the SSLEngine On for vhosts. Thanks to the Ubuntu forums for that gem. Here's an example vhost that uses SSL.

<VirtualHost 127.0.0.1:443>
DocumentRoot "/Users/paul/Sites/myproject"
ServerName myproject.fancybread.local
SSLEngine On
SSLCertificateFile "/Users/paul/certs/localhost/newcert.pem"
SSLCertificateKeyFile "/Users/paul/certs/localhost/localhost.nopass.key"

DirectoryIndex index.cfm
<Directory "/Users/paul/Sites/myproject">
Options +Indexes FollowSymLinks +ExecCGI
AllowOverride AuthConfig FileInfo
Order allow,deny
Allow from all
</Directory>
</VirtualHost>

Java For Mac OS X 10.5 Update 2 - ColdFusion 8 Gotcha

OS X , ColdFusion , Java 12 Comments »
If you're a Mac person and haven't already installed ColdFusion 8 on 10.5 (Leopard), be aware that updating Java will cause the ColdFusion 8 (64-bit OS X) installer to fail. The problem appears to be that the Java version "1.5.0_16" is unrecognized by the installer as a supported 64-bit version of Java. Note that CF8 will run on Java version 1.5.0_16 for Mac, but it will not install to it.

Beware Java For Mac OS X 10.4 Release 5

OS X , ColdFusion , Java No Comments »
ColdFusion developers on Mac take note. Updating Java to J2SE Relase 5 will cause a "CFCServlet must be initialized" error when you use Application.cfc. Normally, I don't go hunting down the next version of Java to install, I simply neglected to uncheck this install during a recent Software Update. If you have updated and are currently seeking a fix, my temp fix is to change the CurrentJDK symbolic link under /System/Library/frameworks/JavaVM.framework/Versions back to 1.4.2 (which, by the way was also update, but at least still works!).

Read more...


Powered by Mango Blog. Design and Icons by N.Design Studio
RSS Feeds