Nginx 부하 균형 설정 실례
8680 단어 nginx
1. 머리말
제 가 사용 하 는 환경 은 centos 7 이 고 nginx 버 전 은 1.8.1 입 니 다. 구체 적 으로 어떻게 설치 하 는 지 제 앞의 글 을 참고 하 세 요.우리 회사 의 응용 서버 는 환경 이 있 습 니 다. 하 나 는 개발 환경 이 고 하 나 는 테스트 환경 입 니 다. 두 환경의 응용 은 같 지만 창고 의 데 이 터 는 다 릅 니 다. 이렇게 하면 잠시 기다 리 는 테스트 에 도 편리 합 니 다.
2. nginx 부하 균형 설정
nginx 기본 값 은 conf / nginx. conf 를 시작 설정 으로 합 니 다. conf / nginx. conf. default 는 nginx. conf 의 백업 으로 두 파일 의 내용 이 똑 같 습 니 다. 그러면 우 리 는 자신의 수요 에 따라 nginx. conf 에 부하 균형 을 설정 할 수 있 습 니 다. nginx. conf 내용 은 다음 과 같 습 니 다.
#user nobody; # nginx
worker_processes 1; # nginx ( cpu )
# [debug | info | warn | error | crit]
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#
#pid logs/nginx.pid;
events {
#
worker_connections 1024;
}
# http ,
http {
include mime.types; # mime
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 logs/access.log main;
sendfile on; #
#
#tcp_nopush on;
#tcp_nodelay on;
##tcp_nopush sendfile on 。tcp_nodelay keepalive 。
#
keepalive_timeout 65;
# gzip
#gzip on;
#
upstream myproject {
#
server 192.168.1.111; # ip
server 192.168.1.114; # ip
}
#
server {
listen 80;
# ,
server_name nginx_proxy;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
# root html;
# index index.html index.htm;
# , IP
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
#
proxy_buffering off;
#
proxy_pass http://myproject;
}
#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 html;
#}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
3. Nginx 상용 명령
# nginx :
nginx -t /usr/local/nginx/conf/fzjh.conf
# 、
./sbin/nginx # conf/nginx.conf,-c
./sbin/nginx -s stop
pkill nginx
# ,
./sbin/nginx -s reload
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.