[Go] gin framework https
gin 프레임워크를 사용하여 웹서버 배포 연습을 하던 중, http가 아닌 https가 필요하게 되었다. 찾아보니 go 자체에서 http를 https로 변환하기 위한 TLS 인증서를 만드는 방법이 있었다. 1. Go 자체 서명 1.1. TLS 인증서 파일 생성 $ go run /usr/local/go/src/crypto/tls/generate_cert.go --rsa-bits=2048 --host=localhost 위 명렁어를 실행하면 cert.pem과 key.pem 두 개의 파일이 생성된다. 1.2. 테스트 // https.go package main import ( "github.com/gin-gonic/gin" "github.com/unrolled/secure" ) func main() { secu..