>  기사  >  운영 및 유지보수  >  nginx 503 서비스를 일시적으로 사용할 수 없음 오류를 해결하는 방법

nginx 503 서비스를 일시적으로 사용할 수 없음 오류를 해결하는 방법

王林
王林앞으로
2023-05-13 16:22:066490검색

최근 웹사이트를 새로 고친 후 503 서비스를 일시적으로 사용할 수 없다는 오류가 자주 나타납니다. 최근 nginx.conf의 단일 IP 방문 횟수 제한이 생각나는 경우가 있습니다. (limit_req_zone $binary_remote_addr zone=allips:20m rate= 20r/s;) 이 숫자를 확대한 후 새로 고침 후 문제가 해결된 것으로 나타났습니다. (이것도 더 크게 변경했습니다.limit_req zone=allipsburst=50nodelay;) 문제를 확인하기 위해 숫자를 반복적으로 변경하고 테스트해본 결과 실제로 문제가 있다는 것을 발견했습니다. 이 숫자를 너무 작게 설정하면 문제가 있는데, 페이지에서 참조하는 js, css, 이미지가 모두 하나의 연결로 계산되기 때문에 웹 페이지를 새로 고쳐야 한다는 것을 fiddler를 통해 확인했습니다. 따라서 단일 페이지 새로 고침으로 이 제한을 초과할 수 있습니다. 이 제한을 초과하면 503 서비스를 일시적으로 사용할 수 없다는 메시지가 표시됩니다.

nginx.conf를 첨부하세요

#user nobody;
worker_processes 1;
#worker_rlimit_nofile 100000; 
#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 {
  include    mime.types;
  default_type application/octet-stream;
 
##cache##
 proxy_connect_timeout 5;
 proxy_read_timeout 60;
 proxy_send_timeout 5;
 proxy_buffer_size 16k;
 proxy_buffers 4 64k;
 proxy_busy_buffers_size 128k;
 proxy_temp_file_write_size 128k;
 proxy_temp_path /home/temp_dir;
 proxy_cache_path /usr/local/nginx/cache levels=1:2 keys_zone=cache_one:200m inactive=1d max_size=30g;
 ##end##
#limit per ip per second access times 10 
limit_req_zone $binary_remote_addr zone=allips:20m rate=20r/s;
 
  #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;
 
  #keepalive_timeout 0;
  keepalive_timeout 65;
 
  #gzip on;
upstream myweb80{
  ip_hash;
  server 192.168.3.105:80;
  server 192.168.3.103:80;
}
 
upstream myweb8080{
  ip_hash;
  server 192.168.3.222:10080;
  #server 192.168.3.103:8080;
 } 
upstream myweb10086{
  ip_hash;
  server 192.168.3.102:10086;
  server 192.168.3.108:10086;
 } 
upstream myweb443{
  ip_hash;
  server 192.168.3.105:443;
  server 192.168.3.103:443;
 } 
 
  # another virtual host using mix of ip-, name-, and port-based configuration
  #
  server {
    listen    80;
    allow  218.17.158.2;
allow 127.0.0.0/24;
allow 192.168.0.0/16;
allow 58.251.130.1;
allow 183.239.167.3;
allow 61.145.164.1;
deny  all;
server_name myweb.com;
    location / {
        proxy_pass http://myweb80;
proxy_set_header x-real-ip $remote_addr;
limit_req zone=allips burst=50 nodelay;  
    }
  }
 
  server {
    listen    8080;
allow  218.17.158.2;
allow 127.0.0.0/24;
allow 192.168.0.0/16;
allow 58.251.130.1;
allow 183.239.167.3;
allow 61.145.164.1;
deny  all;
    location / {
        proxy_pass http://myweb8080;
proxy_set_header x-real-ip $remote_addr;
limit_req zone=allips burst=50 nodelay;  
    }
  }
 
# https server
  #
  server {
    listen    10086 ssl;
    server_name localhost;
allow  218.17.158.2;
allow 127.0.0.0/24;
allow 192.168.0.0/16;
allow 58.251.130.1;
allow 183.239.167.3;
allow 61.145.164.1;
#deny  all;
    ssl_certificate   ssl/1_www.myweb.com_bundle.crt;
    ssl_certificate_key ssl/2_www.myweb.com.key;
 
  #  ssl_session_cache  shared:ssl:1m;
  #  ssl_session_timeout 5m;
 
  #  ssl_ciphers high:!anull:!md5;
  #  ssl_prefer_server_ciphers on;
 
    location / { 
   proxy_pass https:// myweb10086; 
   #roft html; 
   #index index.html index.htm; 
    } 
  }
 
  服务器{ 
    listen 443 ssl; 
    server_name localhost;
 
    ssl_certificate ssl / 1_www.myweb.com_bundle.crt; 
    ssl_certificate_key ssl / 2_www.myweb.com.key;
 
  #ssl_session_cache共享:ssl:1m; 
  #ssl_session_timeout 5m;
 
  #ssl_ciphers high:!anull:!md5; 
  #ssl_prefer_server_ciphers on;
 
    location / { 
   proxy_pass https:// myweb443; 
   #roft html; 
   #roft html; 
   #index index.html index.htm; 
    } 
  } 
}

위 내용은 nginx 503 서비스를 일시적으로 사용할 수 없음 오류를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 yisu.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제