Posts Tagged ‘apache’

Installing Subversion on Windows

Subversion is an open-source version control system. It is used in production by many companies. There are other software products such as Collabnet that utilize this with it’s own features. It is supposed on windows, unix, and mac os x. Today we’re going to install Subversion on a windows environment. THE FOLLOWING ARE THE SYSTEM [...]

More »

Apache web server on windows, how to password protect directory

Running Windows 2003 with Apache 2.2, how do I password protect a web directory? First, open up your httpd.conf file located in your apache\conf directory. In the directory sections, add the following <Directory “c:/htdocs/foldername-to-secure”>  AllowOverride All  Options none  Order deny,allow </Directory> To create the password file, goto a dos prompt, and into the apache’s bin [...]

More »