[nginx] Spring boot 를 위한 Reverse Proxy 설정하기
2021. 8. 17. 16:35ㆍIT개발/Trouble Shooting
반응형
※ Reverse Proxy 란? Forward Proxy와 차이점은?
https://www.lesstif.com/system-admin/forward-proxy-reverse-proxy-21430345.html
1. nginx 설정
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
gzip on;
include /etc/nginx/conf.d/*.conf;
}
2. api.conf 설정 ( /etc/nginx/conf.d/api.conf )
server {
listen 80;
server_name api.yourdomain.com;
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_set_header X-NginX-Proxy true;
proxy_redirect off;
proxy_pass "http://127.0.0.1:8080";
}
}
3. 참고로 웹서버 설정(vue 배포본이 위치할...)
server {
listen 80;
server_name www.yourdomain.com;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
반응형
'IT개발 > Trouble Shooting' 카테고리의 다른 글
[SSMS] 실행 제한 시간을 초과했습니다. 작업이 완료되기 전에 실행 제한 시간이 지났거나 서버가 응답하지 않습니다. (0) | 2022.01.28 |
---|---|
디스크 파트 삭제 파티션 재정의가 작동하지 않음 (0) | 2021.07.12 |
리눅스 메모리 점유율 확인하기 (0) | 2021.06.28 |
[해결방법] 사용자 계정에 원격 로그인 권한이 없기 때문에 연결이 거부되었습니다. (0) | 2018.09.11 |
톰캣을 윈도우 서비스로 등록하기 (1) | 2018.08.17 |