Linux system configuration Apache virtual Host instance

Source: Internet
Author: User
Tags vps

Installs Apache,php:yum install httpd PHP assumes that the VPS IP is 58.130.17.168, there are two domain names pointing to the IP, respectively domain1.com, domain2.com, modify/etc/httpd/conf/ Httpd.conf, added at the end of the document: ServerName 58.130.17.168 namevirtualhost 58.130.17.168 &

Install apache,php:
Yum Install httpd PHP

Assuming that the VPS IP is 58.130.17.168, there are two domain names pointing to the IP, respectively domain1.com, domain2.com,

To modify the/etc/httpd/conf/httpd.conf, add at the end of the file:

ServerName 58.130.17.168
Namevirtualhost 58.130.17.168

<virtualhost 58.130.17.168>
ServerName domain1.com
Documentroot/var/www/domain1.com
<directory "/var/www/domain1.com" >
Options Indexes FollowSymLinks
AllowOverride None
Order Allow,deny
Allow from all
</Directory>
</VirtualHost>

<virtualhost 58.130.17.168>
ServerName domain2.com
Documentroot/var/www/domain2.com
<directory "/var/www/domain2.com" >
Options Indexes FollowSymLinks
AllowOverride None
Order Allow,deny
Allow from all
</Directory>
</VirtualHost>

Then create different index.html files under/var/www/domain1.com and/var/www/domain2.com:
echo "Domain1" >/var/www/domain1.com/index.html
echo "Domain2" >/var/www/domain2.com/index.html

Enter http://domain1.com and http://domain2.com in the browser to see the effect.

Linux system configuration Apache virtual Host instance

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.