码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 入门实战

时间:2019-11-20 23:38:46      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:tab   oda   localhost   table   hello   file   github   redirect   执行   

nginx入门实战

nginx 安装与卸载

下载安装

进入 http://nginx.org/en/download.html
下载自己想要的版本,我选择的stable版本

tar -zxvf nginx.tar.gz
cd nginx
./configure
make
make install # 如果报错 使用 sudo make install

使用

upstream hello.com {
    server 127.0.0.1:8084 weight=1;
    server 127.0.0.1:8084 weight=1;
}
server {
    location / {
        proxy_pass      http://hello.com;
        proxy_redirect  default;
    }
}

接下来访问 http://localhost:8080/hello来测试

遇到的问题

  • nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed (2: No such file or directory)
    • 解决方案
      • 需要刚开始执行nginx 加载nginx.conf文件
      • sudo ./nginx -c /usr/local/nginx/conf/nginx.conf

参考文章

nginx 入门实战

标签:tab   oda   localhost   table   hello   file   github   redirect   执行   

原文地址:https://www.cnblogs.com/Draymonder/p/11901550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!