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
- php
- unity
- server
- mariadb
- MySQL
- ubuntu
- java
- C lanuage
- 컴퓨터과학총론
- techEmpower
- 개발자
- caddy
- javascript
- H2O
- C
- 프래그먼트
- android
- 해석
- 구글
- 개발
- Portfolio
- 자바
- centOS7
- 번역
- 안드로이드
- kakao
- NGINX
- error
- it
- 한글
Archives
- Today
- Total
개발모음집
서버에 greenlock, letsencrypt로 https 적용하면서 문제발생한 것 본문
아래 블로그를 보고 참고해서 설치했다.
https://www.zerocho.com/category/NodeJS/post/59f0efe01dc7c80019aca9f1
서버 설치 후 git clone 하고
export NODE_ENV=production
설정하고
const dev = process.env.NODE_ENV === 'development';
const prod = process.env.NODE_ENV === 'production';
console.log(prod)
if (prod) {
const lex = greenlock.init({
packageRoot: __dirname,
configDir: './greenlock.d',
maintainerEmail: 'voiddeveloper91@gmail.com',
cluster: false
}).serve(app);
} else if (dev) { // 개발용일 때
app.listen(prod ? process.env.PORT : 50001, () => {
console.log(`${prod ? process.env.PORT : 50001}번 포트에서 작동중.`);
});
}
바로 서버 동작 시키니
Listening on 0.0.0.0:80 for ACME challenges, and redirecting to HTTPS
Listening on 0.0.0.0:443 for secure traffic
Ready to Serve:
domainname
위와 같이 출력만 되고 greenlock.d폴더에 config.json 코드가 변경이 되지않고,
config.json.bak, accounts폴더가 생기지 않았다.
우선
export NODE_ENV=development
developement로 설정하고 서버동작한 다음
export NODE_ENV=production
다시 동작시키니까 에러해결
'Server > node.js' 카테고리의 다른 글
The \"data\" argument must be one of type string, Buffer, TypedArray, or DataView. Received type undefined (0) | 2020.10.05 |
---|---|
node_module_version error (0) | 2020.05.21 |
https lets-encrypt renew (0) | 2020.05.20 |
nodejs mysql2 error (0) | 2020.03.31 |
express mysql serverStatus = 3, update query가 되지 않는 문제 (0) | 2020.03.25 |