yum install httpd html
如:要想訪問/usr/local/temp/report下面的文件index.htmllinux
就須要在/etc/httpd/conf/httpd.conf添加以下配置文件:ide
<VirtualHost *:80>
DocumentRoot /usr/local/temp/report
<Directory /usr/local/temp/report>
Options Indexes FollowSymLinks
AllowOverride all
Order allow,deny
Allow from all
</Directory>
</VirtualHost>rest
a、臨時關閉(不用重啓機器):htm
setenforce 0 設置SELinux 成爲permissive模式blog
setenforce 1 設置SELinux 成爲enforcing模式
b、修改配置文件須要重啓機器:
修改/etc/selinux/config 文件
將SELINUX=enforcing改成SELINUX=disabledci