Apache7 tomcat connector 설치 $ tar xvzf tomcat-connectors-1.2.48-src.tar.gz $ cd tomcat-connectors-1.2.48-src/native $ ./configure --with-apxs=/home/taxhelper/apps/apache/bin/apxs $ make && make install 2021. 1. 11. tomcat Manager 페이지 접속 1. tomcat-users.xml 2. /apache-tomcat-8.5.55/webapps/manager/META-INF 의 context.xml 에서 ip 접근 추가 2020. 5. 24. Http 를 https 로 redirect http.conf 파일 수정 1. rewrite mod on LoadModule rewrite_module modules/mod_rewrite.so 2. configure 수정 RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L] # Rewrite 엔진을 켭니다. RewriteEngine on # HTTP로 요청이 들어오면 RewriteCond %{HTTPS} off # HTTPS로 돌려줍니다. 앞의 .*은 정규식입니다. 맨뒤의 [R=301,L]은 301, 즉 영구 이동한 것으로 리.. 2020. 4. 8. JK Module 환경에서 SSL 설치 1. SSL 각 키값을 생성하고 파일을 수신한다. crt/key/ca 파일 2. /extra/http-ssl.conf 파일을 수정한다. ServerAdmin admin@hostname.com ServerName server1.hostname.com ServerAlias server1.hostname.com ErrorLog "logs/server1.hostname.com-error_log" SSLEngine on JkMount /* instance1 SSLCertificateFile "/home/hostname/apps/apache/conf/server.crt" SSLCertificateKeyFile "/home/hostname/apps/apache/conf/server.key" SSLCACertifica.. 2019. 9. 10. intall php and apache in windows Installing Apache 2.4 and PHP 7 for Development on WindowsPosted on septiembre 27, 2015 by Daniel Arancibia Bohle — 19 comentariosIn this post I’m going to explain how to install Apache and PHP without using the WAMP or XAMPP distributions, I’m using this approach because I think you can have more control over configurations, modules and services installed.Installing Apache 2.4.25To download Apa.. 2018. 9. 3. SSL 만료일 확인 #openssl x509 -in server.crt -noout -text 2018. 5. 25. apache Max connection 수정 MPM - Multi-Processing Moudle 1. compile option --with-mpm=worker 주의 : mysql 컴파일시 --enable-thread-safe-client 의 옵션이 추가 되어야 함. 2. Max Connection 설정 방법 Maxclient 는 StartServers * ThreadsPerChild 로 정해짐 ( MaxClient = StartServer * ThreadsPerChild )Default : 16(DEFAULT_SERVER_LIMIT) * 64(DEFAULT_THREAD_LIMIT) = 1024 가. httpd.conf에서 httpd-mpm.conf 파일을 include 시켜야 한다. httpd-mpm.conf 파일에서 StartServers 2.. 2011. 7. 29. 이전 1 다음