Share with others:
- Click to share on WhatsApp (Opens in new window)
- Click to share on Telegram (Opens in new window)
- Click to share on Twitter (Opens in new window)
- Click to share on Facebook (Opens in new window)
- Click to share on LinkedIn (Opens in new window)
- Click to email a link to a friend (Opens in new window)
- Click to share on Pinterest (Opens in new window)
- Click to share on Pocket (Opens in new window)
- Click to share on Reddit (Opens in new window)
- Click to share on Tumblr (Opens in new window)
- Click to print (Opens in new window)
- More
Related
Automatic Starting Tomcat on ubuntu
Create a new file to write the code to run on computer start-up: Open a new file using the following command from terminal: sudo vi /etc/init.d/tomcat or sudo gedit /etc/init.d/tomcat Copy the below code in the new tomcat file opened: # Tomcat auto-start # description: Auto-starts tomcat # processname: tomcat #…
In "Linux/CLI"
Create Multiple Virtual Hosts in Ubuntu.
Enable Apache mod_rewrite: sudo a2enmod rewrite Set up some site folders in the Document root, for Ubuntu it is located at /var/www: Create directory: mysite.com mkdir /var/www/mysite.comNOTE: Create an index.html file in each of these folders just for testing purposes. If we open http://localhost/mysite.com from browser, we should be able to see the…
In "virtualhost"
Create Multiple Virtual Hosts in Windows
Virtual Host let you run multiple Websites on your computer. It also lets you store the files for those sites anywhere on your computer and not just in the C:XAMPP/htdocs folder. The process to create VIrtual Host: 1. Add a new entry to your computer’s hosts file: It tells the…
In "virtualhost"