nginx 부하 균형 과 역방향 대 리 를 간단하게 설정 합 니 다.
2980 단어 수송 하 다.
2. nginx 의 시작 과 정지
:window nginx
(1) :.
ginx.exe start nginx
(2) :.
ginx.exe -s stop( , 。 )
.
ginx.exe -s quit( , )
3. nginx. conf 파일, 역방향 프 록 시 설정
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
gzip on;
gzip_types text/plain application/javascript text/css;
keepalive_timeout 65;
server {
#nginx 8080
listen 8080;
# nginx ip, ip
server_name localhost;
# localhost location
location / {
#
root html/webApp;
#try_files: ; $uri: ; /index.html:
try_files $uri /index.html;
#
index index.html;
}
#~ ,
#~* ,
#^~ , , , ,
#
#=
location ^~/test/ {
# /test
proxy_pass http://192.168.0.1:1234/;
# host , ip , localhost
proxy_set_header Host $http_host;
# cookie path /test /, session
proxy_cookie_path /test /;
#cookie
# cookie cookie_domain localhost:8080 http://192.168.0.1:1234/
proxy_cookie_domain localhost:8080 http://192.168.0.1:1234/;
#
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Headers "Origin,X-Requested-With,Content-Type,Accept";
add_header Access-Control-Allow-Methods "GET,POST,OPTIONS";
}
}
}
4. nginx. conf 파일, 부하 균형 설정
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
gzip on;
gzip_types text/plain application/javascript text/css;
keepalive_timeout 65;
upstream api_server {
# 3 8080 8090
#server 192.168.0.1:8080 weight=1;
#server 192.168.0.1:8090 weight=2;
# IP hash ,
# , session
#ip_hash;
#server 192.168.0.1:8080;
#server 192.168.0.1:8090;
# , ,
#fair;
#server 192.168.0.1:8080;
#server 192.168.0.1:8090;
keepalive 2000;
}
server {
listen 8080;
# nginx ip, ip
server_name localhost;
client_max_body_size 1024M;
location / {
root html/webapp;
index index.html;
}
location /api/ {
proxy_pass http://api_server/;
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
셸 입문 부터 정통 한 for 순환 및 6 가지 난수 생 성 법순환 용 1. [문법 구조] 2. 문법 linux 에서 무 작위 수 를 만 드 는 여섯 가지 방법 방법 1: 방법 2: openssl 을 통 해 난수 생 성 방법 3: date 시간 을 통 해 얻 을 수 있 습 니 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.