1. yum -y install httpd
2. 编辑配置文件:
vi /etc/httpd/conf/httpd.conf
修改80主机的根目录为: /home/repo/yum/centos-release
同时开启目录浏览:
DocumentRoot "/home/repo/yum/centos-release" <Directory "/home/repo/yum/centos-release"> Options Indexes FollowSymLinks Order allow,deny Allow from all AllowOverride None Require all granted IndexOptions Charset=UTF-8 IndexOptions NameWidth=* </Directory>
3. 启动服务: service httpd start
service firewalld stop # 停止防火墙
systemctl disable firewalld # 禁用防火墙
尝试通过 http://ip地址/ 访问。