知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

ubuntu安装nginx配置反向代理服务器

发布时间:2015-02-02 18:29:55作者:知识屋

安装nginx:

sudo apt-get install nginx

启动nginx;

sudo service nginx start

如果报了这样的错误:

[alert] could not open error log file: open() "/var/log/nginx/error.log" failed (13: Permission denied)2015/01/16 15:55:46[warn] 1973#0: the "user" directive makes sense only if the master process runs with super-user privileges, ignored in /etc/nginx/nginx.conf:1nginx: the configuration file /etc/nginx/nginx.conf syntax is ok2015/01/16 15:55:46 [emerg] 1973#0: open() "/var/run/nginx.pid" failed (13: Permission denied)nginx: configuration file /etc/nginx/nginx.conf test failed

出现上面的情况要么就是文件没创建,要么就是没权限。所以:

先用touch和mkdir创建文件和文件夹。然后在用sudo chmod a+rwx -R 文件路径赋予所有用户所有权限(777)。

最后在nginx.conf文件中的http下加入

upstream myproject(内网映射的地址别名){server     192.168.0.27:80(ip:port);}server{listen 8088;server_name localhost;location / {root html;index index.html index.htm;proxy_pass http://myproject(内网映射地址别名);}}
好了,现在使用service nginx start命令启动服务器。然后输入http://localhost:8088看看是不是成功了。

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜