nginx反向代理beego项目网站

2014-12-13 12:59 来源:www.chinab4c.com 作者:golang专家

    nginx反向代理beego项目网站,这样一来我们通过beego开发的网站项目就可以很轻松的通过nginx解析成域名来访问了。

  server {
    listen       80;
    server_name  localhost;

    charset utf-8;
  
    location / {
        try_files /_not_exists_ @backend;
    }

    location @backend {
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header Host            $http_host;

        proxy_pass http://127.0.0.1:8081;
    }
    log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
              '$status $body_bytes_sent "$http_referer" '
              '"$http_user_agent" $http_x_forwarded_for';
    access_log  /data1/logs/access.log  access;
}


}

来源:http://www.chinab4c.com/