Code/Web
[웹서버] Nginx로 URL 주소 뒤의 포트번호없이 접속하는 방법
codens
2020. 8. 8. 07:42
- 뒤에 붙는 포트 번호 없애기
- 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; # 기존 포트
}
}
반응형