golang - 用Nginx反向代理部署go写的网站。
習慣沉默
習慣沉默 2017-05-16 17:27:54
0
2
856

这个是我的go语言项目(MVC)的path:/home/demo/goproj/src/Test 监听的是8080端口,Nginx的配置文件该怎么写呢??我配置了几次还是不对。" location /{} " 还是这样写" location /Test {}"

習慣沉默
習慣沉默

全部回复(2)
伊谢尔伦

简单版本:

location / {
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header Host $http_host;
  proxy_redirect off;
  proxy_pass http://localhost:8080;
}

一般静态文件由 nginx 提供,所以可以这样写

root /home/demo/goproj/src/Test/public;
try_files $uri/index.html $uri.html $uri @goapp;

location @goapp {
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header Host $http_host;
  proxy_redirect off;
  proxy_pass http://localhost:8080;
}
大家讲道理
server {
    listen 80;
    server_name 123.com;

    location / {
    proxy_pass    http://127.0.0.1:8080;
    proxy_redirect default;
        }
}

如果有2级目录则

        location /test {
        proxy_pass    http://127.0.0.1:8080;
        proxy_redirect default;
        }
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!