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
- Sequelize
- Nest.js
- OCR
- react
- 자료구조
- typeORM
- nodejs
- TypeScript
- 공룡게임
- class
- game
- Express
- AWS
- MongoDB
- Python
- flask
- dfs
- GIT
- mongoose
- JavaScript
- 정렬
- cookie
- 게임
- nestjs
- Queue
- jest
- Bull
- MySQL
- Dinosaur
Archives
- Today
- Total
목록nginx (1)
포시코딩
[mac] Nginx 설치 및 리버스 프록시 세팅 (Reverse proxy)
설치 brew install nginx 설치 확인 brew services list 세팅 cd /usr/local/etc/nginx rm -rf nginx.conf vi nginx.conf nginx.conf.default 파일이 있기 때문에 그냥 편하게 지우고 다시 만들기 nginx.conf 파일 수정 worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; upstream backend { server localhost:8080; server localhost:8081; } server { listen 80; location / { proxy..
코딩 외
2023. 7. 18. 09:48