-
Rancher - react build html nginx로 띄워보기ETC/MacOS,Rancher 2024. 3. 15. 14:44
react로 개발되고 빌드된 html를 로컬에서 nginx로 띄워볼 일이 생겼다, 간단하지만 정리는 해두자.
custom.conf 생성
$ vi /Users/deokjoonkang/dev/opt/nginx/config/custom.conf server { listen 80; server_name example.com; root /usr/share/nginx/html; index index.html; location / { try_files $uri $uri/ /index.html; } }
컨테이너 실행
$ nerdctl run -d -p 8090:80 \ -v /Users/deokjoonkang/dev/opt/nginx/config/custom.conf:/etc/nginx/conf.d/custom.conf:ro \ -v /Users/deokjoonkang/dev/projects/neoflat/uceo/source/build:/usr/share/nginx/html:ro \ nginx:alpine
'ETC > MacOS,Rancher' 카테고리의 다른 글
Mac에서 Python으로 된 thumbor Rancher로 기동 (0) 2024.04.12 Mac crontab 설정 (0) 2024.04.08 Ruby 버전 업데이트 (1) 2023.11.03 MacOS에서 파이썬 버전 관리하기 (0) 2023.08.08 앱스토어 설치 진행 상황 확인 (0) 2023.04.11