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
- 컴퓨터과학총론
- 번역
- H2O
- 개발
- php
- unity
- C lanuage
- techEmpower
- 자바
- caddy
- kakao
- centOS7
- MySQL
- 한글
- 개발자
- Portfolio
- 프래그먼트
- java
- ubuntu
- 구글
- javascript
- mariadb
- server
- NGINX
- C
- it
- android
- 해석
- error
- 안드로이드
Archives
- Today
- Total
개발모음집
vue-cli와 freenom을 이용해서 도메인 등록하는 방법 본문
1. freenom에 들어가서 원하는 도메인 주소를 적고, 검색
2. 원하는 도메인에 get it now! 버튼을 클릭하고 하단에 continue버튼을 눌러준다.
3. 도메인 적용하려는 server의 ip를 입력한다.
4.그리고 도메인을 이용하여 서버에 접속하려고 하니
"Invalid Host header"
라는 에러가 html페이지에 보여졌다.
찾아보니 dev로 빌드했을 때는 disablehostcheck를 true로 해줘야 했다.
{root경로}/vue.config.js
module.exports = {
configureWebpack: {
// other webpack options to merge in ...
},
// devServer Options don't belong into `configureWebpack`
devServer: {
host: '0.0.0.0',
hot: true,
disableHostCheck: true,
},
};
'client > Vue' 카테고리의 다른 글
upgrade to vuetify 2.0 (0) | 2019.08.05 |
---|---|
vuejs https (0) | 2019.06.30 |
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 |
vue lecture curl example (0) | 2019.02.04 |