bitnami redmine 4.2.1-3 https 설정하기
bitnami redmine 4.2.1-3 https 설정하기
https://algo79.tistory.com/1831
설치를 하고 https 를 사용을 하려면 몇가지 설정을 해주면 된다.
관리 - 일반 - 프로토콜을
http 에서 https 로 변경환해주자.
이렇게 뜬다 인증서가 공식이 아니여서 그렇다.
하지만 https 활성화는 바로 된다.
이제 가지고 있는 인증서를
# vi /opt/redmine-4.2.1-3/apache2/conf/bitnami/bitnami.conf
여기 주소에 맞게 이름을 변경하고 넣어주거나
수정을 해주고
# /opt/redmine-4.2.1-3/ctlscript.sh restart apache
Syntax OK
/opt/redmine-4.2.1-3/apache2/scripts/ctl.sh : httpd stopped
Syntax OK
/opt/redmine-4.2.1-3/apache2/scripts/ctl.sh : httpd started at port 80
이렇게 아파치 재시작 하면 인증서가 변경된것을 확인 할 수 있다.
아참 그리고 기본 80 포트가 열려 있는데
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP_HOST} !^(localhost|127.0.0.1)
RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [R,L]
추가하면 리다이렉트가 되서 http 로 접속해도 https 로 자동으로 전환된다.