Chinaunix首页 | 论坛 | 博客
  • 博客访问: 63704
  • 博文数量: 38
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 396
  • 用 户 组: 普通用户
  • 注册时间: 2015-07-12 14:46
文章分类

全部博文(38)

文章存档

2016年(11)

2015年(27)

我的朋友
最近访客

分类: 系统运维

2015-08-15 10:44:59

配置apache基于端口的虚拟主机。


apache默认首页目录:/var/www/html/


编辑配置文件:
[root@super63 ~]# vim /etc/httpd/conf/httpd.conf 


NameVirtualHost *:80

Listen 80
Listen 81

<VirtualHost *:80>
    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot /var/www/html
    ServerName />     ErrorLog logs/ />     CustomLog logs/ common
</VirtualHost>
<VirtualHost *:81>
    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot /var/www/html/web1/
    ServerName bbs.example.com
    ErrorLog bbs.example.com-error_log
    CustomLog logs/bbs.example.com-access_log common
</VirtualHost>

检查配置文件语法:
[root@super63 ~]# httpd -t

启动apache:
[root@super63 ~]# /etc/init.d/httpd start


阅读(413) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~