需求:
- 1:通过浏览器访问8080端口展示的页面。
- 2:项目配置文件分别放在test1.conf与test2.conf中。
- 3:
- 8080端口:页面的主目录为:/home/user/test1,默认展示页面内容:"hello,this is first",ServerName为ops1.test.com
- 8080端口:页面的主目录为:/home/user/test2,默认展示页面内容:"hello,this is second",ServerName为ops2.test.com
实际操作
-
开放监听8080端口
apache5.png -
创建根目录,并增加新的展示内容
mkdir /home/lcc/test1
vim index.html
hello,this is first
mkdir /home/lcc/test2
vim index.html
hello,this is second -
配置主配置
添加新的根目录
apache8.png -
配置站点文件
apache6.png
apache7.png -
启动站点文件
sudo a2ensite test1.conf
sudo a2ensite test2.conf
或者添加新链接
sudo ln -s ../sites-available/test1.conf
sudo ln -s ../sites-available/test2.conf
apache9.png -
重启apache服务
sudo service apache2 reload
局域网内访问时,使用hosts解析到本地ip上
apache10.png apache11.png-
局域网内访问结果
apache12.png
网友评论