实战精品 3.web服务器

一、配置web服务器,能被访问

二、配置web服务器,实现虚拟主机。 能访问到/www/virtual目录下的页面,

页面从下载。

并保证,同样能被访问到之前的内容。

三、从下载文件,能被本地用户sisi通过路径

访问到,但是不可以被remote.com域访问。

实施步骤:

一、配置web服务器,能被访问

1.安装httpd,并启动服务。  [root@dtop30 ~]# rpm -qa |grep httpd

[root@dtop30 ~]# yum -y install httpd

[root@dtop30 ~]# chkconfig httpd on

[root@dtop30 ~]# service httpd start

2.首先要通读题意:这里最终要创建2个web站点,一个是,

还有一个是。所以,2个都必定是虚拟主机!

配置httpd的主配置文件。

[root@dtop30 ~]# vim /etc/httpd/conf/httpd.conf

3.编写web页面。

[root@dtop30 ~]# vim /var/www/html/index.html

4.重启httpd服务。测试:

[root@dtop30 ~]# service httpd restart

[root@dtop30 ~]# elinks

RHCE_RHEL6_实战精品 3.web服务器_虚拟主机

ok!

二、配置虚拟主机。 能访问到/www/virtual目录下的页面,

页面从下载。

并保证,同样能被访问到之前的内容。

1.配置httpd主配置文件,添加虚拟主机www30.dn.ws.com。

[root@dtop30 ~]# vim /etc/httpd/conf/httpd.conf

2.创建网页目录,并赋予http类型的context值。

[root@dtop30 ~]# mkdir -p /www/virtual

[root@dtop30 ~]# ls -lZ /var/www/html

RHCE_RHEL6_实战精品 3.web服务器_虚拟主机

[root@dtop30 ~]# semanage fcontext -a -t httpd_sys_content_t ‘/www(/.*)?’

[root@dtop30 ~]# restorecon –vFR /www

3.下载指定内容的页面

[root@dtop30 ~]# cd /www/virtual

[root@dtop30 virtual]#

4.下载网页:

RHCE_RHEL6_实战精品 3.web服务器_虚拟主机

右键 restircted.html

RHCE_RHEL6_实战精品 3.web服务器_虚拟主机

Name:index.html

保存位置选择:Browse for other folders --->/www/virtual  --->save

RHCE_RHEL6_实战精品 3.web服务器_虚拟主机

5.查看内容,查看context。

[root@dtop30 virtual]# cat index.html

[root@dtop30 virtual]# ls -lZ index.html

6.重启httpd服务。测试 :

[root@dtop30 virtual]# service httpd restart

[root@dtop30 virtual]# elinks

ok!

[root@dtop30 virtual]# elinks

RHCE_RHEL6_实战精品 3.web服务器_虚拟主机

ok!

linux

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/21231.html