Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- str_to_date
- JSON 분할
- 마리아디비
- Meta Table
- 스프링 리액티브 프로그래밍
- multi update
- 마이바티스 트랜잭션
- 스프링 배치 공식문서
- JSON 분해
- org.json
- 스테이지에 올리기
- 스프링 웹플럭스
- git stage
- JSON 분리
- ChainedTransactionManager #분산데이터베이스 #Spring Boot #MyBatis
- 스프링 배치 메타 테이블
- JSONArray 분할
- 성능개선
- spring webflux
- 폐기하기
- 무시하기
- 문자형을 날짜형으로
- spring reactive programming
- 날짜형을 문자형으로
- nonblocking
- JSONObject 분할
- jar 소스보기
- date_format
- batchInsert
- JobExecutionAlreadyRunningException
Archives
- Today
- Total
ebson
[fform 정기 재배포] 5. ubuntu에서 nginx 서버에 ssl 키 등록하기 본문
NODEJS WEB PROJECT/DEVELOPMENT
[fform 정기 재배포] 5. ubuntu에서 nginx 서버에 ssl 키 등록하기
ebson 2022. 8. 15. 15:27ubuntu 에서 nginx 서버에 ssl 키 등록하기
1. 원하는 설정 파일에 스크립트 작성하기
$sudo vi /etc/nginx/conf.d/sites-enabled/default 또는 아래와 같이 원하는 곳에 설정파일을 작성
$sudo vi /etc/nginx/conf.d/https.conf
server {
# SSL configuration;
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
server_name ftclone-portfolio.link;
access_log /home/ubuntu/client/server_logs/host.access.log main;
ssl_certificate /etc/letsencrypt/live/ftclone-portfolio.link/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/ftclone-portfolio.link/privkey.pem;
if ($scheme != "https") {
return 301 https://$host$request_uri;
}
location / {
root /home/ubuntu/client/deploy;
index index.html index.htm;
try_files $uri /index.html;
add_header X-Frame-Options SAMEORIGIN;
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header Strict-Transport-Security "max-age=31536000; includeSubdomains;";
}
location /api {
proxy_pass https://localhost:5000;
}
location /socket {
proxy_pass https://localhost:5000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location /B090041 {
proxy_pass http://apis.data.go.kr;
}
location /uploads {
alias /home/ubuntu/server/uploads;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
server_tokens off;
location ~ /\.ht {
deny all;
}
}
2. nginx 재시작하여 설정 반영하기
$sudo service nginx restart
3. nginx 를 시작한 ec2 인스턴스 보안그룹의 인바운드 규칙에 443 포트에 대한 접속을 허용
4. ssl을 발급받은 도메인 주소로 접속하여 인증서 정보 확인하기
참고
'NODEJS WEB PROJECT > DEVELOPMENT' 카테고리의 다른 글
ubuntu20.04에서 certbot 기실행 에러시 해결방법 (0) | 2022.08.15 |
---|---|
[fform 정기 재배포] 4. ubuntu의 node에서 https 서버 생성할 수 있도록 설정하기 (0) | 2022.08.15 |
ubuntu20.04에 snapd 패키지 매니저 설치하기 (0) | 2022.08.15 |
ubuntu 패키지 매니저 apt와 apt-get 차이점 (0) | 2022.08.15 |
MacOS 특정 포트에서 실행중인 프로세스 확인 및 종료하기 (0) | 2022.08.15 |
Comments