Httpd.conf: Difference between revisions

From IT Wiki
(새 문서: 리눅스 아파치 웹서버의 메인 설정파일 *위치 : /etc/conf/httpd/httpd.conf == 설정법 == === 접근 제어 === <pre> <Directory "/www/ihd/admi...)
 
Line 5: Line 5:
== 설정법 ==  
== 설정법 ==  
=== 접근 제어 ===
=== 접근 제어 ===
<pre>
<pre class='shell'>
<Directory "/www/ihd/admin">
<Directory "/www/ihd/admin">
   Order Deny,Allow
   Order Deny,Allow

Revision as of 21:31, 2 May 2018

리눅스 아파치 웹서버의 메인 설정파일

  • 위치 : /etc/conf/httpd/httpd.conf

설정법

접근 제어

<Directory "/www/ihd/admin">
  Order Deny,Allow
  Deny from All
  Allow from 192.168.2.0/24
</Directory>