WAS/Apache 7

기본 httpd reverse proxy 설정 (http, https)

Rocky Linux 9 에는 기본 openssl 3 이상이 설치되어 있음openssl 3이상으로 컴파일하면, TLS1.2~ 만 지원하므로,(필요 시)TLS1.0~1.3까지 지원하려면 openssl 1.1.1w 설치 후 이를 이용하도록 httpd (2.4.63등) 컴파일 필요※ /app/httpd 에 설치하는 것으로 가정 1) TLS1.0~1.3 (호환성) 을 위해 openssl 1.1.1w 이용 시wget https://www.openssl.org/source/openssl-1.1.1w.tar.gztar xvfz openssl-1.1.1w.tar.gzcd openssl-1.1.1wdnf install -y perl perl-core perl-FindBin./config --prefix=/usr/loca..

WAS/Apache 2025.04.08

안전한 https, SSL 설정

1. SSL 보안성 점검 (d= 는 점검할 주소 입력)https://www.ssllabs.com/ssltest/analyze.html?hideResults=on&d=www.tistory.com 2. SSL 설정 방법아래 사이트에서 환경 정보를 입력하면 예제 설정 파일을 얻을 수 있습니다.이를 적절히 수정하여 반영하면 됩니다.(Forward Secrecy(http→https) 까지 적용해야 A+을 받을 수 있는데, 오류가 발생할 수 있으므로 서비스 환경에 따라 결정해서 적용합니다.)https://ssl-config.mozilla.org/ Mozilla SSL Configuration Generator ssl-config.mozilla.org

WAS/Apache 2025.02.18

Windows / apache_2.4.3 + php_5.4.10 + mod_fcgid_2.3.7

프로그램 폴더 httpd-2.4.3-win32 (Apache) d:/server/apache php-5.4.10-Win32-VC9-x86 (PHP) d:/server/php mod_fcgid-2.3.7-win32 (Fast CGI) d:/server/apache/modules* Apache 2.4.3과 mod_fcgid-2.3.7 Win32 binary 위치http://www.apachelounge.com/download/(thread-safe module 사용에 주의) 1. Module 로드LoadModule fcgid_module modules/mod_fcgid.so 2. d:/server/apache/conf/httpd.conf 수정DocumentRoot "d:/server/htdocs"...Add..

WAS/Apache 2012.12.29

ISAPI / CGI(fastcgi, fcgid) / mpm(worker, prefork, event)

처리 방식 특성 서버 방식 Apache 사용 mod Process non-threaded (thread-safe) non-thread-safe 모듈 사용 가능 안정성, 다소 느림 mpm=prefork (Apache) FastCGI (IIS) Thread threaded (non-thread-safe) thread-safe 모듈 사용해야함 확장성, 다소 빠름 mpm=worker (Apache) ISAPI(IIS) mod_fcgid (mod_fastcgi) Event event-driven (async.) 저비용, 빠름, 확장성 검증 필요 mpm=event (Apache 2.4) Nginx [apache vs nginx]Apache: 많은 reference, 많고 안정화된 mod (특히 mod_rewrite..

WAS/Apache 2012.12.29