-
-
Save thelebster/2e53703071994e8e83df72b1aac09af5 to your computer and use it in GitHub Desktop.
Bash script to create virtual hosts and prepare your drupal directory.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script creates virtual hosts and prepares your mysql DB and drupal directory. | |
# you should put it under /usr/local/bin/ | |
# and run it with sudo newsite | |
# Set the path to your localhost | |
www=/var/www | |
echo "Enter directory name under $www" | |
read sn | |
# Prepare settings.php | |
chmod '777' $www/$sn/sites/default | |
cp $www/$sn/sites/default/default.settings.php $www/$sn/sites/default/settings.php | |
chmod '777' $www/$sn/sites/default/settings.php | |
# Create a database | |
sn2=`echo $sn|tr '-' '_'` | |
mysql -uroot -e "create database $sn2" | |
echo "Creating new mysql database under $sn2" | |
# Create the file with VirtualHost configuration in /etc/apache2/site-available/ | |
echo "<VirtualHost *:80> | |
DocumentRoot /var/www/$sn/ | |
ServerName $sn.lh | |
<Directory /var/www/$sn/> | |
Options +Indexes +FollowSymLinks +MultiViews +Includes | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
</Directory> | |
</VirtualHost>" > /etc/apache2/sites-available/$sn.conf | |
# Add the host to the hosts file | |
echo 127.0.0.1 $sn.lh >> /etc/hosts | |
# Enable the site | |
a2ensite $sn | |
# Reload Apache2 | |
/etc/init.d/apache2 restart | |
echo "Your new site is available at http://$sn.lh" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script creates virtual hosts. | |
# you should put it under /usr/local/bin/ | |
# and run it with sudo newvhost | |
# Set the path to your localhost | |
www=/var/www | |
echo "Enter directory name under $www" | |
read sn | |
# Create the file with VirtualHost configuration in /etc/apache2/site-available/ | |
echo "<VirtualHost *:80> | |
DocumentRoot /var/www/$sn/ | |
ServerName $sn.lh | |
<Directory /var/www/$sn/> | |
Options +Indexes +FollowSymLinks +MultiViews +Includes | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
</Directory> | |
</VirtualHost>" > /etc/apache2/sites-available/$sn.conf | |
# Add the host to the hosts file | |
echo 127.0.0.1 $sn.lh >> /etc/hosts | |
# Enable the site | |
a2ensite $sn | |
# Reload Apache2 | |
/etc/init.d/apache2 restart | |
echo "Your new site is available at http://$sn.lh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment