1. 安装配置httpd
$ sudo yum install httpd
2. 修改配置文件welcome.conf
将配置文件 /etc/httpd/conf.d/welcome.conf 以下选项的-号改为+号:
原文:Options -Indexes
修改后:Options +Indexes
3. 重启服务
$ sudo systemctl restart httpd
4. 更改http服务器的默认目录方法(可选)
在配置文件 /etc/httpd/conf/httpd.conf 中一共有三个地方需要修改,这里以目标目录 /pub/meetings/test 为例。
4.1 修改参数 “DocumentRoot”
关于这个参数的一部分原文长这样:
[[email protected] ~]$ cat /etc/httpd/conf/httpd.conf | grep “DocumentRoot”
# DocumentRoot: The directory out of which you will serve your
DocumentRoot “/var/www/html”
# access content that does not live under the DocumentRoot.
可以看到,它默认的目录位于 /var/www/html 。
接下来,我们注释掉原文,把它改成我们需要的/pub/meetings/test目录。
[[email protected] ~]$ sudo vi /etc/httpd/conf/httpd.conf
…
# Document