SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
Multi-Site Setup
Create another site
Create a directory to hold the site specific files and configuration:
cd /path/to/your/drupal/install
cd sites
mkdir www.mynewsite.com
cd www.mynewsite.comCopy the default settings.php from a fresh install of Drupal or, if you followed our Drupal instructions, the copy you made of it:
cp ../default/settings-original.php settings.php
chmod ugo+w settings.phpCreate modules and themes directories for themes and modules that will be specific to this particular site:
mkdir modules
mkdir themesEdit your Apache virtual hosts config file, /usr/local/apache2/conf/extra/httpd-vhosts.conf and add a ServerAlias for your subsite to the <VirtualHost> directive for your base Drupal site:
ServerAlias www.mynewsite.com Create a database for your subsite as per the MySQL configuration instructions.
Alternative Methods
http://justinhileman.info/blog/2007/06/a-more-secure-drupal-multisite-install
- Log in to post comments