- 뒤에 붙는 포트 번호 없애기

- url 단순화

 

- 예) URL : localhost:999 -> simple.localhost 로 변경

 

- nginx 이용

    - nginx\conf\nginx.conf 파일 수정

 

server {

    #listen 80;

    server_name simple.localhost ;  # 접속할 URL

    location / {

          proxy_set_header   X-Real-IP $remote_addr;

          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

          proxy_set_header X-Forwarded-Proto $scheme;

          proxy_set_header   Host      $http_host;

          proxy_pass        http://127.0.0.1:999;  # 기존 포트

    }

}

 

반응형

'Code > Web' 카테고리의 다른 글

구글 번역 API 사용법  (0) 2020.08.15
[웹] 프로젝트 폴더 구조  (0) 2020.08.08
웹 브라우저 엔진 리스트 정리  (0) 2020.08.05
[Flutter] flutter doctor 에러 해결 방법  (0) 2020.07.30
[Bootstrap] Modal , 옵션 Backdrop  (0) 2020.07.20
Posted by codens