apache2的安装目录默认在/etc/apache2
,目录结构:
网站目录默认安装在/var/www/html
,只有index.html一个文件,访问127.0.0.1
时可以看到:
简单说就是同一台服务器可以同时处理超过一个域名(domain)。假设www.example1.net和 www.example2.net两个域名都指向同一服务器,WEB服务器又支持Virtual Hosting,那么www.example1.net和www.example2.net可以访问到同一服务器上不同的WEB空间(网站文件存放目 录)。
sudo mkdir -p /var/www/bob.com/html
sudo vim /var/www/bob.com/html/index.html
粘贴下面内容:
<html> <head> <title>Simple Page</title> </head> <body> <p>If you're seeing this in your browser then everything works.</p> </body> </html>
保存并关闭文件。
chown -R www-data:www-data /var/www/bob.com chmod -R og-r /var/www/bob.com # 去除其他用户读权限
网站名.conf
的格式:vim /etc/apache2/sites-available/bob.com.conf
粘贴以下内容:
<VirtualHost *:80> ServerAdmin admin@example.com ServerName bob.com ServerAlias www.bob.com DocumentRoot /var/www/bob.com/html ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost>
这是一个基础的虚拟主机。根据你的设置,你可能需要更高级的 .conf 文件。
在更新所有内容后保存并关闭文件。
sudo ln -s /etc/apache2/sites-available/bob.com.conf /etc/apache2/sites-enabled/bob.com.conf
谨慎起见,在重启服务前先检查下语法:
sudo apache2ctl configtest
vim /etc/hosts
首行添加:
127.0.0.1 bob.com
保存、退出
a2ensite example.com.conf
systemctl restart apache2