nginx 入门实战

Posted Draymonder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 入门实战相关的知识,希望对你有一定的参考价值。

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 入门实战的主要内容,如果未能解决你的问题,请参考以下文章

Nginx入门到实战 - 基础篇

Nginx 入门实战--Nginx 常用配置参数说明

Nginx实战入门教程

10.Kong入门与实战 基于Nginx和OpenResty的云原生微服务网关 --- 内置插件

Nginx+Keepalived入门到实战(持续更新......)

给小白看的:Nginx 从入门到实战