nginx反向代理配置

前言

上一篇文章写了nginx 的部署,这个把反向代理配置贴出来

#用户
user nginx nginx;
# 工作进程个数,可配置多个
worker_processes 2;

#日志文件地址,可以自己选择,记得启动之前先创建该文件
error_log /app/acct/nginx/logs/error.log crit;
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
#pid文件地址,可以自己选择,记得启动之前先创建该文件
pid /app/acct/nginx/run/nginx.pid;
worker_rlimit_nofile 51200;

events {
  use epoll;
  # 单个进程最大连接数
  worker_connections 51200;
  multi_accept on;
}
#scoket连接监听
stream{
    upstream tcp_server{
        #分发地址
        server 137.32.152.31:12345;
		server 137.32.152.32:12345;
    }
    server{
        #监听端口
        listen 10019;
        proxy_pass tcp_server;
    }
}
http {
  include mime.types;
  default_type application/octet-stream;
  server_names_hash_bucket_size 128;
  client_header_buffer_size 32k;
  large_client_header_buffers 4 32k;
  client_max_body_size 1024m;
  client_body_buffer_size 10m;
  sendfile on;
  tcp_nopush on;
  keepalive_timeout 120;
  server_tokens off;
  tcp_nodelay on;

  fastcgi_connect_timeout 300;
  fastcgi_send_timeout 300;
  fastcgi_read_timeout 300;
  fastcgi_buffer_size 64k;
  fastcgi_buffers 4 64k;
  fastcgi_busy_buffers_size 128k;
  fastcgi_temp_file_write_size 128k;
  fastcgi_intercept_errors on;

  #Gzip Compression
  gzip on;
  gzip_buffers 16 8k;
  gzip_comp_level 6;
  gzip_http_version 1.1;
  gzip_min_length 256;
  gzip_proxied any;
  gzip_vary on;
  gzip_types
    text/xml application/xml application/atom+xml application/rss+xml application/xhtml+xml image/svg+xml
    text/javascript application/javascript application/x-javascript
    text/x-json application/json application/x-web-app-manifest+json
    text/css text/plain text/x-component
    font/opentype application/x-font-ttf application/vnd.ms-fontobject
    image/x-icon;
  gzip_disable "MSIE [1-6]\.(?!.*SV1)";

  #If you have a lot of static files to serve through Nginx then caching of the files' metadata (not the actual files' contents) can save some latency.
  open_file_cache max=1000 inactive=20s;
  open_file_cache_valid 30s;
  open_file_cache_min_uses 2;
  open_file_cache_errors on;

######################## default ############################
  # 服务器集群名称  和下面的location地址对应
  upstream myServer {
    # weigth参数表示权值,权值越高被分配到的几率越大
    # server 127.0.0.1:8080 weight=1;
    # server 127.0.0.1:8060 weight=1;
    server 137.32.152.31:12345;
    server 137.32.152.32:12345;

  }

  # 每一个server相当于一个代理服务器
  server {
  # 监听端口,默认80
  listen 80;
  # 当前服务的域名,可以有多个,用空格分隔(我们是本地所以是localhost)  www.kolbe.cn
  server_name 137.32.152.31;
  #server_name _;
  access_log /app/acct/nginx/logs/access_nginx.log combined;
  root /app/acct/nginx/root/default;
  # 当没有指定主页时,默认会选择这个指定的文件,可多个,空格分隔
  index index.html index.htm index.php;
  # 表示匹配的路径,这时配置了/表示所有请求都被匹配到这里
  location / {
      # 请求转向自定义的服务器列表
      proxy_pass http://myServer;
  }
  location /nginx_status {
    stub_status on;
    access_log off;
    allow 127.0.0.1;
    deny all;
    }
  location ~ [^/]\.php(/|$) {
    #fastcgi_pass remote_php_ip:9000;
    fastcgi_pass unix:/dev/shm/php-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
    }
  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
    expires 30d;
    access_log off;
    }
  location ~ .*\.(js|css)?$ {
    expires 7d;
    access_log off;
    }
  location ~ /\.ht {
    deny all;
    }
  }

########################## vhost #############################
  include vhost/*.conf;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

木小同

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值