Quick steps to configure SSL encryption on a WAMP server

There are a number of guides for this on the web, all of varying accuracy. These are the minimal steps I followed to get it working for development on a stock WAMP server installation: Enable ssl_module in the Apache module list Create the self-signed certificate keys as per Section 3 of http://tud.at/programm/apache-ssl-win32-howto.php3: cd c:\path\to\wamp\bin\apache\Apache2.2.11\conf  … Continue reading Quick steps to configure SSL encryption on a WAMP server

Installing Subversion on CentOS – be careful what you read

The CentOS directions are pretty good – follow them to the letter. The directions in the installed /etc/httpd/conf.d/subversion.conf – less so. In particular, your <Location> node should look something like this, in order to work (ignore the rest): <Location /repos> DAV svn # path to your repo here SVNPath /var/www/svn/repos   AuthType Basic AuthName "Subversion… Continue reading Installing Subversion on CentOS – be careful what you read