2018년 2월 4일 일요일

아파치 https 설정

vim ./apache/conf/httpd.con
or
vim ./apache/conf/vhosts/home.oopscraft.com.conf

[아래 내용 추가]
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]

댓글 없음:

댓글 쓰기

Creating CRC32 Hex string

public String getCRC32HexaString(String paramString) throws Exception  {   byte bytes[] = paramString.getBytes(DEFAULT_CHARSET);   Che...