httpd.conf 아파치 설정에서 특정아이피만 허용/접근불가 설정
페이지 정보
본문
#### httpd.conf 파일..
** 특정한 아이피(IP)만 접근불가
<Directory "C:/Apache/htdocs">
Options Indexes FollowSymLinks MultiViews Includes ExecCGI
AddType text/html .shtml
AddHandler server-parsed .shtml
AddHandler cgi-script .cgi
AllowOverride All
Order allow,deny
Allow from all
Deny from 해당IP
Deny from env=no_access
</Directory>
** 특정한 아이피(IP)만 허용
<Directory "/home/testjobpr2/public_html">
Options FollowSymLinks MultiViews
AllowOverride None
Order deny,allow
Allow from 해당IP
Deny from all
Deny from env=no_access
</Directory>
** 특정한 아이피(IP)만 접근불가
<Directory "C:/Apache/htdocs">
Options Indexes FollowSymLinks MultiViews Includes ExecCGI
AddType text/html .shtml
AddHandler server-parsed .shtml
AddHandler cgi-script .cgi
AllowOverride All
Order allow,deny
Allow from all
Deny from 해당IP
Deny from env=no_access
</Directory>
** 특정한 아이피(IP)만 허용
<Directory "/home/testjobpr2/public_html">
Options FollowSymLinks MultiViews
AllowOverride None
Order deny,allow
Allow from 해당IP
Deny from all
Deny from env=no_access
</Directory>
- 이전글리눅스 관리자가 알아야 할 50가지 팁 21.02.10
- 다음글[펌] [리눅스] 아파치 httpd.conf 환경설정 21.02.10
댓글목록
등록된 댓글이 없습니다.