====== Apache =====
* description : 주레피 현황
* author : 주레피
* email : dhan@repia.com
* lastupdate : 2020-04-02
===== httpd.conf =====
http 로 들어올 경우 https 로 강제 전환(force redirect) \\
아파치 모듈중 mod_rewrite 를 사용하면 가능하다. \\
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R,L]
[[https://www.lesstif.com/system-admin/http-https-force-redirect-6291722.html|http 로 들어올 경우 https 로 강제 전환(force redirect)]] \\
[[https://sarc.io/index.php/httpd/1120-apache-https-http-redirect-rewrite|Apache HTTPS/HTTP 리다이렉트(Redirect/Rewrite) 하는 방법]] \\
===== Case Study =====
* [[https://linuxhint.com/get-rid-apache-test-page-centos/|How to Get Rid of Apache Test Page in Centos, 기본 테스트 페이지 변경하기]]
아래의 파일을 수정해야 합니다.
$> ls /etc/httpd/conf.d/welcome.conf
===== SSL(https) 적용 가이드 =====
* [[wiki:web:apache:SSL 적용 가이드]]//
//
===== Ref =====
* [[https://archive.apache.org/dist/httpd/|다운로드 사이트]]
* [[https://www.tecmint.com/hide-apache-web-server-version-information/|How to Hide Apache Version Number and Other Sensitive Info]]
* [[https://cwiki.apache.org/confluence/display/HTTPD/DirectoryListings|DirectoryListings]]
* [[https://aeac.tistory.com/23|Linux Apache - 가상호스트설정(Apache virtual host)]] Apache 2.4.x
{{tag>주레피 김토피아 apache ssl https}}