Httpd作應用代理

 

1.httpd安裝

yum install httpd html

 

2.在配置/etc/httpd/conf/httpd.conf添加配置文件

如:要想訪問/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

 

3.配置添加完成後,須要service httpd restart,重啓下httpd,使修改的配置文件生效。

4.當出現Apache訪問頁面時,檢查緣由,看selinux是否是開着:

   a、臨時關閉(不用重啓機器):htm

    setenforce 0         設置SELinux 成爲permissive模式blog

     setenforce 1         設置SELinux 成爲enforcing模式
  b、修改配置文件須要重啓機器:
    修改/etc/selinux/config 文件
    將SELINUX=enforcing改成SELINUX=disabled
ci

相關文章
相關標籤/搜索