Apache 13

PHP 이용 웹서버 디렉토리 서비스를 더 깔끔하고 편리하게 이용하기

Project-CleverWeb/LastAutoIndex Requirements The ablity to set the directory index 디렉토리 인덱스를 사용할 수 있는 관리자 PHP 5.4 or later Composer Installation composer require projectcleverweb/lastautoindex Setting # Apache Options -Indexes DirectoryIndex index.php index.html index.htm /path/to/LastAutoIndex/index.php # Nginx autoindex off; index index.php index.html index.htm /path/to/LastAutoIndex/index.php..

lang/php 2018.07.18

아파치 성능도구 ab

ab - 아파치 웹서버 성능검사 도구 성능 엔지니어링 대한 접근 방법 (Performance tuning) Shell - ab 유틸을 활용한 WEB 서버 응답속도 측정 및 간단한 성능 부하 테스트 ab -n 1000 -c 10 https://domain.com 옵션 -n requests : 요청 수 -c cuncurrency : 동시 요청 수 -t timelimit : 제한시간 ms단위 -v verbosity : 로그레벨 1~4(더 자세히 보여준다) ab 결과값 ab -n 400 -c 10 -g com.domain.tsv "https://domain.com/" This is ApacheBench, Version 2.3 Copyright 1996 Adam Twiss, Zeus Technology Ltd, ..

server-side/apache 2017.02.22

Apache Subversion

아파치 서브버전 서버 설정 # 설치 sudo apt-get update sudo apt-get install apache2 libapache2-svn # 저장소 디렉토리 생성 sudo mkdir /home/svn sudo chown www-data /home/svn 아파치에 서브버전 저장소 만들기 DAV svn # 지정된 디렉토리 아래 모든 디렉토리가 서브버전 각각의 저장소로 작동된다. # 아파치는 각 서브디렉토리를 서브버전 자장소로 네트워크를 열어준다. SVNParentPath /home/svn # 접근제어 방식 AuthType Basic AuthName "Subversion Repository" # 접근제어용 비밀번호 파일 위치 AuthUserFile /home/svn/passwd 아파치 접근 제어를..

vcs/svn 2014.11.05

Ubunt 14.04 업그레이드 후 아파치 2.4.3 설정

Ubunt 14.04 업그레이드와 아파치 설정후 2가지 문제로 사이트가 제대로 운영되지 않았습니다. 첫번째는 /etc/apache2/site-enabled/ 아래 설정파일은 모두 *.conf 확장자가 되어야 합니다. 이전은 .conf 확장자를 사용하지 않고 일반 파일을 설정해되 되었습니다만 업그레이드 후 /etc/apache2/apache2.conf 에서 설정파일을 *.conf로 지정해서 로드합니다. (같은 기능에 이전버전은 .conf확장자가 아니어도 된것 같았는데...) 2번째는 vhost에서 "Require all granted" 을 설정하세요. Order allow,deny Allow from all # New directive needed in Apache 2.4.3: Require all gra..

os/Ubuntu 2014.08.28
반응형