본문 바로가기

Apache4

Apache 403 에러시 권한을 644로 chmod 644 ./fileName 2015. 5. 21.
Apache Mysql PHP phpMyAdmin FTP Tomcat http://www.apachefriends.org/en/xampp-windows.html http://nobang.tistory.com/1158 We've released the new version of XAMPP 1.7.7, including:Apache 2.2.21MySQL 5.5.16PHP 5.3.8phpMyAdmin 3.4.5FileZilla FTP Server 0.9.39Tomcat 7.0.21 (with mod_proxy_ajp as connector)Download older versions of XAMPP (even the "old" WAMPP) directly from SourceForge.See also: »FAQ - Vista problems«Vista Note: Because o.. 2012. 6. 18.
Apache 자체 인증서 만든 후 SSL 테스트 자체 인증서 만들기 1 # openssl req -new > CA.csr # openssl rsa -in privkey.pem -out CA.key # openssl x509 -in CA.csr -out CA.crt -req -signkey CA.key -days 365 자체 인증서 만들기 2 * CSR 을 만든다. # openssl req -new > CA.csr * common name 에 도메인 이름 입력(예:naver.com) * RSA 키를 만든다. # openssl rsa -in privkey.pem -out CA.key * CSR 에 자체 서명키로 CA 인증서를 만든다. # openssl x509 -in CA.csr -out CA.crt -req -signkey CA.key -days 365.. 2009. 7. 7.
아파치 모듈 설명 ################################################################################################## apache설치시 --enable-mods-shared=all 옵션으로 모든모듈 DSO 방식으로 설치시 2.2버전에서 기본적으로 아래모듈이 올라와 있습니다. 이중 필요없는 것은 지우시고 이것저것 태스트 하신다음 최적의 dso 아파치를 만드세요~ ^^; ################################################################################################## LoadModule authn_file_module modules/mod_authn_file.so 문자파일.. 2009. 5. 12.