Nginx 가 다른 Nginx 를 가리 키 도록 설정 합 니 다.
회사 의 Restful 인 터 페 이 스 는 화이트 리스트 방식 으로 권한 을 부여 하고 새로운 앱 이 시스템 에 접속 할 때 앱 의 IP 주 소 를 Rest 서비스의 화이트 리스트 에 추가 해 야 한다.그러나 앱 에 고정된 IP 주소 가 없어 매번 변 경 된 IP 주 소 를 수권 해 야 한다.
계획
1. 고정 IP 가 있 는 ECS 를 추가 하고 Nginx 서비스 설정 에이 전 트 를 설치 하여 이 문 제 를 해결 합 니 다.2. 아 리 클 라 우 드 의 균형 SLB 서 비 스 를 개통 하고 IP 매 핑 을 하여 고객 에 게 매 핑 된 주 소 를 노출 시킨다.
고객 과 의 소통 을 통 해 방안 1 을 선택 하여 이 문 제 를 해결한다.
Nginx 설치
https://www.centos.bz/2018/01/centos-7%EF%BC%8C%E4%BD%BF%E7%94%A8yum%E5%AE%89%E8%A3%85nginx/
Nginx 설정
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
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;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
#
proxy_pass http://api.*****.com;
# , 。
# proxy_set_header Host $HOST;
# proxy_set_header X-Real-IP $remote_addr;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
}
주의 사항
, ECS IP restful 。( )
proxy_set_header Host $HOST;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
linux2에 nginx 설치설치 가능한 nginx를 확인하고, 해당 nginx를 설치한다. localhost 혹은 해당 ip로 접속을 하면 nginx 화면을 볼 수 있다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.