linux中httpd的使用

目录

1.安装httpd,并将访问apache服务器的首页修改为hello.html, 且内容为: "My Home Page is hello"

2.虚拟主机:虚拟两台主机ip为100,200, 对应访问目录:/www/ip/100, /www/ip/200            并创建首页文件index.html 

3.配置不同端口的虚拟主机访问apache服务器


1.安装httpd,并将访问apache服务器的首页修改为hello.html, 且内容为: "My Home Page is hello"

安装httpd:

linux中httpd的使用_第1张图片

查看服务器:

linux中httpd的使用_第2张图片

 首页修改:

linux中httpd的使用_第3张图片

 修改首页内容:

linux中httpd的使用_第4张图片

 在配置文件中修改:

linux中httpd的使用_第5张图片

 重启服务:

[root@wang conf]# systemctl restart httpd
结果:

linux中httpd的使用_第6张图片

 

2.虚拟主机:虚拟两台主机ip为100,200, 对应访问目录:/www/ip/100, /www/ip/200
            并创建首页文件index.html 

首先添加两个ip:

 创建访问目录:

[root@wang ~]# mkdir /www/ip/{100,200} -p

建立myhosts编辑:

linux中httpd的使用_第7张图片

 创建首页文件夹:

linux中httpd的使用_第8张图片

3.配置不同端口的虚拟主机访问apache服务器

创建目录:

 创建文件并设置主页内容:

配置文件:

linux中httpd的使用_第9张图片

 

 linux中httpd的使用_第10张图片

你可能感兴趣的:(服务器,apache,linux)