# 설정파일 수정

sudo su -
vi /etc/nginx/sites-available/default

  location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
                # try_files $uri $uri/ =404;  ## 기존 구문 주석처리
 
                ## 추가 시작
                proxy_pass http://localhost:8080;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header Host $http_host;
                ## 추가 끝
 
        }

기존 try_files $uri $uri/ =404; 구문은 주석처리

 

 

 

 

 

 

 

 

'Infra Structure > Nginx' 카테고리의 다른 글

[Nginx] SSL 적용  (0) 2022.07.11
[Nginx] docker로 Nginx 설치  (0) 2022.07.03
[Nginx] Load Balancing 설정하기  (0) 2022.06.01
[Nginx] Ubuntu에 Nginx 설치 및 실행  (0) 2022.05.31
[Nginx] 윈도우 시작/종료  (0) 2021.06.23

+ Recent posts