Bash Script to allow create or delete apache virtual hosts on Ubuntu in a quick way.
- Download the script
- Apply permission to execute:
$ chmod +x /path/to/virtualhost.sh
- Optional: if you want to use the script globally, then you need to copy the file to your /usr/local/bin directory, is better if you copy it without the .sh extension:
$ sudo cp /path/to/virtualhost.sh /usr/local/bin/virtualhost
$ cd /usr/local/bin
$ wget -O virtualhost https://raw.githubusercontent.com/iANautiyal/virtualhost/master/virtualhost.sh
$ chmod +x virtualhost
Basic command line syntax:
$ sudo sh /path/to/virtualhost.sh [create | delete] [domain] [optional host_dir]
With script installed on /usr/local/bin
$ sudo virtualhost [create | delete] [domain] [optional host_dir]
to create a new virtual host:
$ sudo virtualhost create project.dev
to create a new virtual host with custom directory name:
$ sudo virtualhost create project.dev full_dir
to delete a virtual host
$ sudo virtualhost delete project.dev
to delete a virtual host with custom directory name:
$ sudo virtualhost delete project.dev full_dir
Forked From RoverWire/virtualhost