답변:
mod_status.so
아파치 모듈 내에로드 했는지 확인한 다음 httpd.conf를 찾거나 추가하십시오.
# Uncomment the following lines to enable mod_status support:
#
ExtendedStatus On
<Location /server-status>
SetHandler server-status
Order Deny,Allow
Deny from all
Allow from YOUR_IP_HERE
</Location>
그러면 http 서버 내에서 사용중인 모든 페이지를로드 도메인으로 볼 수 있습니다.
액세스하려면 http : // your_ip / server-status를 사용 하십시오.에 정의 된 IP 만 Allow from YOUR_IP_HERE
볼 수 있습니다.
Allow from localhost
나중에lynx http://localhost/server-status
콘솔에서 해당 정보를 확인할 수 있습니다 .