zoukankan      html  css  js  c++  java
  • nginx 配置模板

    #user nobody;
    worker_processes 1;
    
    #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;
    
    #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;
    proxy_connect_timeout 5;
    proxy_read_timeout 60;
    proxy_send_timeout 60;
    proxy_buffer_size 32k;
    proxy_buffers 4 128k;
    proxy_busy_buffers_size 128k;
    proxy_temp_file_write_size 128k;
    client_max_body_size 128m;
    ignore_invalid_headers on;
    
    
    #keepalive_timeout 0;
    
     
    
    
    keepalive_timeout 65;
    
    #gzip on;
    
    upstream XXXXX {
    server IP地址:端口号;
    
    }
    
    
    server {
    listen 90;
    server_name localhost;
    
    #charset koi8-r;
    
    #access_log logs/host.access.log main;
    
    
    location / {
    # these two lines here
    proxy_http_version 1.1;
    proxy_set_header Connection "";
    proxy_pass https://域名/;
    }
    
    location /ZZZZZ/ {
    proxy_pass http://XXXXX;
    }
    
    #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;
    }
    
    
    }
    
    server {
    listen 88;
    server_name localhost;
    
    #charset koi8-r;
    
    #access_log logs/host.access.log main;
    
    
    location / {
    # these two lines here
    proxy_http_version 1.1;
    proxy_set_header Connection "";
    proxy_pass https://域名/;
    }
    
    location /ZZZZZ/ {
    proxy_pass http://XXXXX;
    }
    
    #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;
    }
    
    
    }
    
    server {
    listen 95;
    server_name localhost;
    
    #charset koi8-r;
    
    #access_log logs/host.access.log main;
    
    
    location / {
    # these two lines here
    proxy_http_version 1.1;
    proxy_set_header Connection "";
    proxy_pass https://域名/;
    }
    #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;
    }
    
    
    }
    
     
    
    }
    
    
  • 相关阅读:
    BZOJ 4769: 超级贞鱼 逆序对 + 归并排序
    BZOJ 4897: [Thu Summer Camp2016]成绩单 动态规划
    luogu 4059 [Code+#1]找爸爸 动态规划
    CF718C Sasha and Array 线段树 + 矩阵乘法
    计蒜客 2238 礼物 期望 + 线段树 + 归并
    BZOJ 2157: 旅游 (结构体存变量)
    BZOJ 3786: 星系探索 ETT
    BZOJ 3545: [ONTAK2010]Peaks 启发式合并 + 离线 + Splay
    Spring的几种初始化和销毁方法
    SpringCloud之Zuul高并发情况下接口限流(十二)
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13348418.html
Copyright © 2011-2022 走看看