linux apache ip配置,linux apache虚拟主机配置(基于ip,端口,域名)

配置环境:

linux版本:Centos6.4

httpd版本:

[[email protected] init.d]# pwd

/etc/init.d

[[email protected] init.d]# httpd -v

Server version: Apache/2.2.15 (Unix)

Server built: Oct 19 2017 16:43:38

1,安装httpd服务

yum install httpd -y

2,关闭selinux和防火墙

临时设置selinux为permissive( disabled )状态

Enforcing

[[email protected] ~]# setenforce 0

Permissive

永久修改方法:

[[email protected] ~]# vim /etc/sysconfig/selinux

SELINUX=permissive

3,关闭防火墙

service iptables stop

第一种,基于多ip访问的配置:

1,先把httpd.conf备份一下,以防出错,可以恢复

httpd.conf的文件路径( /etc/httpd/conf )

[[email protected] conf]# ls

httpd.conf httpd.conf.bak magic

2,如果需要启用虚拟主机配置,先把中心主机的配置注释,

#DocumentRoot "/var/www/html"

3,在httpd.conf中,会默认包conf.d目录中的所有 以.conf结尾的配置文件

Include conf.d/*.conf

所以,把虚拟主机的配置文件独立出来放在conf.d目录下

[[email protected] httpd]# ls

conf conf.d logs modules run

[[email protected] httpd]# pwd

/etc/httpd

[[email protected] httpd]# cd conf.d

[[email protected] conf.d]# pwd

/etc/httpd/conf.d

[[email protected] conf.d]# ls

README VirtualHost.conf welcome.conf

VirtualHost.conf 配置文件内容:

ServerName www.7mxt.com

DocumentRoot "/www/7mxt.com"

ServerName www.7mxt.net

DocumentRoot "/www/7mxt.net"

我的主机ip是192.168.1.8,添加另一个ip:

ip addr add 192.168.1.2/24 dev eth0

在对应的目录建立文件:

[[email protected] www]# tree

.

├── 7mxt.com

│   └── index.html

└── 7mxt.net

└── index.html

重启服务: service httpd restart,在浏览器中分别用这两个ip访问,就能看到对应的页面

第二种,基于多端口访问的配置:

1,在VirtualHost.conf中增加一项配置:

ServerName www.7mxt.com

DocumentRoot "/www/7mxt.com"

ServerName www.7mxt.net

DocumentRoot "/www/7mxt.net"

ServerName www.abc.net

DocumentRoot "/www/abc.net"

2,在httpd.conf监听8080端口

Listen 80

Listen 8080

3,/www建立对应的目录和文件

重启服务: service httpd restart,在浏览器中用http://192.168.1.2:8080/  就能访问到abc.net目录下面的文件index.html内容

[[email protected] www]# tree

.

├── 7mxt.com

│   └── index.html

├── 7mxt.net

│   └── index.html

└── abc.net

└── index.html

第三种:基于域名的主机配置

1,NameVirtualHost:指定192.168.1.8:80这个ip地址使用域名解释

NameVirtualHost 192.168.1.8:80

ServerName www.7mxt.com

DocumentRoot "/www/7mxt.com"

ServerName www.7mxt.org

DocumentRoot "/www/7mxt.org"

ServerName www.7mxt.net

DocumentRoot "/www/7mxt.net"

ServerName www.abc.net

DocumentRoot "/www/abc.net"

2,在对应的目录下建立文件

[[email protected] www]# tree

.

├── 7mxt.com

│   └── index.html

├── 7mxt.net

│   └── index.html

├── 7mxt.org

│   └── index.html

└── abc.net

└── index.html

3,在windows host文件中增加主机映射配置

【C:\Windows\System32\drivers\etc】

192.168.1.8 www.7mxt.com

192.168.1.8 www.7mxt.org

4,重启服务: service httpd restart,分别用域名www.7mxt.com, www.7mxt.org就能访问到对应的文件内容

使用ip: 192.168.1.8返回的是第一个虚拟主机的配置,即:www.7mxt.com对应目录下面的内容

原文:http://www.cnblogs.com/ghostwu/p/7827104.html

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值