안녕하세요.
wowlinux 7.0, 아파치 1.3.14 사용자 입니다.
httpd.conf 화일에서 다음과 같이 Proxy 설정을 한 후 서버에 연결된 클라이언트에서
웹브라우저가 서버에 접속하면 httpd 가 클라이언트의 접속을 받은 직 후 강제 종료되어 버립니다.
그래서 클라이언트 측에서 웹 서핑을 계속할 수 없습니다.
그런데 httpd.conf 에서 proxy 설정부분을 모두 주석처리하니
클라이언트의 서비스를 정상적으로 받아들입니다.
왜 이런 현상이 일어나는 것인가요?
혹시 아시는 분 있으면 답변 부탁드립니다.
========================================================
.....
#LoadModule digest_module modules/mod_digest.so
LoadModule proxy_module modules/libproxy.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule expires_module modules/mod_expires.so
.....
AddModule mod_auth_db.c
#AddModule mod_digest.c
AddModule mod_proxy.c
#AddModule mod_cern_meta.c
AddModule mod_expires.c
.....
# Proxy Server directives. Uncomment the following lines to
# enable the proxy server:
#
ProxyRequests On
Order deny,allow
Deny from all
Allow from 10.0.0.1/24
#
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
#
#ProxyVia On
ProxyVia를 On 하면 클라이언트에서 반드시 프록시를 거쳐서 나가는 것인가요?
#
# To enable the cache as well, edit and uncomment the following lines:
# (no cacheing without CacheRoot)
#
#CacheRoot "/var/cache/httpd"
#CacheSize 5
#CacheGcInterval 4
#CacheMaxExpire 24
#CacheLastModifiedFactor 0.1
#CacheDefaultExpire 1
#NoCache a_domain.com another_domain.edu joes.garage_sale.com
# End of proxy directives.
========================================================
잘못된 부분이 있다면 조언 부탁드립니다.
|