Apache redirecting to home directory using userdir module
Tuesday, October 11, 2011 EDT
by: Adam Culp
Tags:apache
Development is made easier by running a full development environment on your workstation. I personally run a full LAMP (Linux, Apache, MySQL, PHP) environment that allows me to test what I am developing on my workstation. In this case I am on my new Dell Inspiron E1505n running Ubuntu 7.04 Feisty Fawn.
One of the problems with doing this is the need to play with permissions on ever site in the server root. So instead I am using ‘userdir’ to keep the sites for easy development and testing. In other words I use apache to pull the site from my home directory for display in my browser. Here is how I did it.
First I needed to activate the module in Apache. It is easy to enable Apache modules on Ubuntu by using the command ‘a2enmod’, or you can disable the module by using the command ‘a2dismod’. (en = enable, dis = disable). Here is how I enabled the userdir module:
$ sudo a2enmod userdir
$ sudo /etc/init.d/apache2 restart
You will need to make sure that you have a sub-directory “public_html” in your home directory, as this is where the userdir is pointed to by default. You can test things out now in the browser of your choice by using the address below:
http://localhost/~username/
The "username" should be whatever user you desire to use, and of course you can use an IP address instead of "localhost".
If you would like to use another directory in your home besides "public_html" you can modify the file /etc/apache2/mods-enabled/userdir.conf to suit your needs. (Make sure to modify both lines that contain "public_html".)
Link to this Article
To link directly to this article from your web site, use one of the following snippets below.
Apache redirecting to home directory using userdir module | Book Of Zeus<a href="http://www.bookofzeus.com/articles/apache-redirecting-to-home-directory-using-userdir-module/" title="Apache redirecting to home directory using userdir module">Apache redirecting to home directory using userdir module | Book Of Zeus</a>
Short URL:
Apache redirecting to home directory using userdir module | Book Of Zeus<a href="http://s.bookofzeus.com/3lXNv" title="Apache redirecting to home directory using userdir module Short URL">Apache redirecting to home directory using userdir module | Book Of Zeus</a>