nginx 配置 http proxy 和fastcgi

http proxy:


#列出所有服务器地址,nginx 自动均衡分发请求到各个服务器。  
upstream frontends {    
    ip_hash;  
    server 192.168.199.1:8088;
    server 192.168.199.2:8089;
}
server {
    listen      80; 
    server_name mydomain.com www.mydomain.com;
    location / {
        proxy_pass_header Server;
        proxy_set_header Host $http_host;
        proxy_redirect off;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Scheme $scheme;
        proxy_pass http://frontends;
    }
     
    #静态资源交由nginx管理
    location /static {
        root        /var/www/mydomain/web;
        expires     1d;
        add_header  Cache-Control public;
        access_log  off;
    }
}`


fastcgi:


server {  
  listen 80; 
  server_name  www.xxxxxxx.xxx; #这里可以配置域名,如果需要支持多个网站的话 #如果需要可以配置访问日志 
  #access_log  /var/log/nginx/log/host.access.log  main; 
  #以下是对静态资源访问的配置, 例如 css img 神马的 
  location ~ ^/css|img|js|tpl/ { 
    root   /data/www/xxxxx/; #expires 4d; #如果需要也可以配置缓存过期时间 
  }
  location / { 
    root   /data/www/xxxxxx/;
    index  index.html index.htm;
    fastcgi_pass   127.0.0.1:9001; #需要分配一个端口号给go-fastcgi 
    fastcgi_index  index; #这是Go的入口
    client_max_body_size    10m;
  }

  error_page   500 502 503 504  /50x.html;
  location = /50x.html { 
    root   /usr/share/nginx/html; 
  } 
}




你可能感兴趣的:(Golang)