https서버의 인증서에 Subject Alternative Name(SAN)에 도메인을 추가해야 브라우저에서 경고가 뜨지 않는다.
아래와 같은 방법으로 SAN을 포함한 인증서를 발행 하면 된다.
openssl genrsa -out rootCA.key 2048
openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 1024 -out rootCA.crt
-extensions v3_req -extfile req.conf
옵션으로 SAN을 포함시킨다. -config req.conf
옵션으로 device.csr에 포함이 되어있다고 빼먹으면 안됨. openssl genrsa -out device.key 2048
openssl req -new -key device.key -out device.csr -config req.conf
openssl x509 -req -in device.csr -CA rootCA.crt -CAkey rootCA.key -CAcreateserial -out device.crt -days 500 -sha256 -extensions v3_req -extfile req.conf
const https=require('https');
const fs = require('fs');
const options = {
key: fs.readFileSync('device.key'),
cert: fs.readFileSync('device.crt'),
ca: [ fs.readFileSync('rootCA.crt') ]
};
https.createServer(options, (req, res) => {
res.writeHead(200);
res.end('https test page\n');
}).listen(443);
openssl req -noout -text -in device2.csr
[req]
distinguished_name = req_distinguished_name
prompt = no
[ req_distinguished_name ]
CN = skyred.cloud
[ v3_req ]
subjectAltName = @alt_names
[ alt_names ]
DNS.1 = *.skyred.cloud
DNS.2 = skyred.cloud