Apache 썸네일형 리스트형 [Apache] Apache Benchmark apache benchmark 사용 스크립트 #!/bin/sh if [ $# -lt 5 ]; then echo "abstress.sh " echo "" exit 1 fi url=$1 tt=$2 start=$3 max=$4 inc=$5 num=$start while true do /usr/local/apache2/bin/ab -t $tt -c $num $url 2>/dev/null > $$ rps=`cat $$ | grep Requests\ per\ second: | awk '{print $4;exit;}'` trans=`cat $$ | grep Transfer\ rate: | awk '{print $3;exit;}'` test_time=`cat $$ | grep Time\ taken\ for\ tests.. 더보기 [Apache] 파일 실행 막기 AddType application/x-httpd-php-source .php .php3 .phtml .js .bak .inc .class .htm .html .txt Order allow,deny Deny from all 위 설정을 이용해주게 되면 해당 폴더의 추가된 타입의 파일에 대한 실행을 막아줌. 더보기 [Apache] Server를 비롯한 각종 pre_setting 해주기 아파치 config파일에서 php_admin_value auto_prepend_file /path/to/execute/php_file 위와 같이 해주게 되면 php가 로드될때 미리 로드될 파일을 설정 해줄 수 있음.여기에 auto_prepend_file 대신 다른 naming을 통해 다른 값들을 변경해줄 수 있음. 더보기 이전 1 2 3 4 다음