生活如麻 发表于 2017-12-23 16:11:41

Ubuntu16.04安装及配置nginx

upstream ihasy{  server
127.0.0.1:9001; #Tornado  
}
  

  
## Start www.ihasy.com ##
  
server {
  listen 80;
  
    server_namewww.ihasy.com ihasy.com;
  

  #root   html;
  
    #indexindex.html index.htm index.py index;
  

  ## send request back to Tornado ##
  location / {
  proxy_passhttp://ihasy;
  

  #Proxy Settings
  proxy_redirect   off;
  
      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_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
  
      proxy_max_temp_file_size 0;
  
      proxy_connect_timeout      90;
  
      proxy_send_timeout         90;
  
      proxy_read_timeout         90;
  
      proxy_buffer_size          4k;
  
      proxy_buffers            4 32k;
  
      proxy_busy_buffers_size    64k;
  
      proxy_temp_file_write_size 64k;
  
   }
  
}
  
## End www.ihasy.com ##
页: [1]
查看完整版本: Ubuntu16.04安装及配置nginx