NGINX reverse proxy 설정 아래와 같은 구성을 하는 경우 springboot에 접속하기 위해 nginx 설정이 필요하다. NGINX nginx.conf 설정 * OS : ubuntu 18.04 * nginx.conf 경로 : /etc/nginx/nginx.conf > nginx 80번 포트 인입시 springboot 8080로 포워딩 * nginx.conf 수정 후 nginx 재기동 (service nginx restart) http { server { listen 80; location / { proxy_pass http://localhost:8080/; } } } 도움되셨다면 공감 꾹! 눌러주세요~