A Path Less Taken

Breaking with convention in a very conventional fashion. Powered by WordPress

"The mightiest oak in the forest is just a tiny nut that held its ground."
Fortune Cookie

Friday, July 2, 2010

Category: Web Development Tags: , , , Author: JJ 0 Comments

Web development is a very common hobby. At least that’s what I keep telling myself. Whether it is or not, I’m a web developer. As such, I spend a fair amount of my spare time reading about web development, watching videos about web development and for sure doing web development. As I set out to install my development tools on my new computer I thought I would chronicle the process. If you’re interested in setting up your own web development platform using mostly open source tools then read on and check out my approach.

Continue reading >>

Friday, November 20, 2009

Category: Web Hosting Tags: Author: JJ 0 Comments

After acquiring a new domain I had to set up the Virtual Host in Apache. I went to httpd.conf and uncommented the Virtual Hosts Include line which includes the conf/extra/httpd-vhosts.conf file. Then I edited the vhosts file and added the following block:

1
2
3
4
5
6
7
<VirtualHost *:80>
     DocumentRoot "c:/apache/mydomain"
     ServerName mydomain.com
     <Directory "c:/apache/mydomain">
          Allow from all
     </Directory>
</VirtualHost>

Then I restarted the Apache service and my new domain worked. My thanks to this post for guidance that lead to the Directory directive included above.