Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- android
- Portfolio
- javascript
- php
- server
- C
- H2O
- kakao
- 개발자
- java
- it
- NGINX
- error
- 한글
- techEmpower
- mariadb
- caddy
- centOS7
- 해석
- unity
- 프래그먼트
- C lanuage
- 컴퓨터과학총론
- MySQL
- 번역
- 구글
- ubuntu
- 자바
- 개발
- 안드로이드
Archives
- Today
- Total
개발모음집
vuejs https 본문
$ wget https://dl.eff.org/certbot-auto
$ chmod a+x certbot-auto
$ ./certbot-auto certonly --standalone
질문에 맞춰 대답해주고 도메인등록을 해주면 된다.
Congratulations!
라는 안내가 나오면 도메인 발급은 받은 것!
vue.config.js 파일
const fs = require('fs');
module.exports = {
configureWebpack: {
// other webpack options to merge in ...
},
devServer: {
// https 적용을 위한 코드
https: true,
https: {
key: fs.readFileSync('../../etc/letsencrypt/live/{도메인주소}/privkey.pem'),
cert: fs.readFileSync('../../etc/letsencrypt/live/{도메인주소}/cert.pem'),
ca: fs.readFileSync('../../etc/letsencrypt/live/{도메인주소}/chain.pem'),
},
// devServer Options don't belong into `configureWebpack`
// dev 빌드상태에도 도메인으로 접속하기 위해서 추가한 코드
host: '0.0.0.0',
hot: true,
disableHostCheck: true,
},
};
your connection is not private 에러 발생
참고 :
https://webpack.js.org/configuration/dev-server/#devserver-https
https://idlecomputer.tistory.com/228
'client > Vue' 카테고리의 다른 글
vuetify example icons not showing (0) | 2019.08.12 |
---|---|
upgrade to vuetify 2.0 (0) | 2019.08.05 |
vue-cli와 freenom을 이용해서 도메인 등록하는 방법 (0) | 2019.06.11 |
vue vuex example (0) | 2019.02.07 |
Unknown custom element: <> - did you register the component correctly? For recursive components, make sure to provide the "name" option. (0) | 2019.02.07 |