No alias directories I create are accessible. Is CWP causing this? I do this all the time without CWP installed
TO MAKE A NEW WWW ALIAS:
cd /home/minecraft/multicraft/servers/
cd serverN # where N is the server number
mkdir www
cd /etc/httpd/conf/
{edit} httpd.conf <--- line 551
# add a new Alias directive
Alias /customerN/ "/home/minecraft/multicraft/servers/serverN/www/"
/etc/init.d/httpd restart
#
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/". If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
#
# We include the /icons/ alias for FancyIndexed directory listings. If you
# do not use FancyIndexing, you may comment this out.
#
Alias /icons/ "/var/www/icons/"
Alias /fiftyone/ "/home/minecraft/multicraft/servers/server51/www/"
<Directory "/var/www/icons">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>