腾讯、阿里云liunx服务器安装nginx(带图)

nginx安装:

  1. 要求的安装环境:
yum install gcc-c++

yum install -y pcre pcre-devel

yum install -y zlib zlib-devel

yum install -y openssl openssl-devel

准备工作完毕。

  1. 上传Nginx并解压 命令:
    tar zxf nginx-1.8.0.tar.gz

  2. 进入文件夹执行下列命令,生成Makefile有这个文件后就可以编辑安装了:
./configure \

--prefix=/usr/local/nginx \

--pid-path=/var/run/nginx/nginx.pid \

--lock-path=/var/lock/nginx.lock \

--error-log-path=/var/log/nginx/error.log \

--http-log-path=/var/log/nginx/access.log \

--with-http_gzip_static_module \

--http-client-body-temp-path=/var/temp/nginx/client \

--http-proxy-temp-path=/var/temp/nginx/proxy \

--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \

--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \

--http-scgi-temp-path=/var/temp/nginx/scgi
  1. 有一些没找到文件,不用管它,继续执行make编译 命令:make
  2. 腾讯、阿里云liunx服务器安装nginx(带图)_第1张图片
  3. 安装nginx  命令:make install
  4. 进入安装过后的目录尝试启动nginx 命令:sbin/nginx
  5. 显示缺少/var/temp/nginx/client此目录,创建命令:mkdir /var/temp/nginx -p
  6. 查看进程状态 命令:ps aux|grep nginx
  7. 关闭nginx 命令:kill -9 18257(进程编号,如18257)或者命令:sbin/nginx -s stop
  8. 快速重启,刷新配置 命令:sbin/nginx -s reload
  9. 修改nginx.conf配置文件 命令:vim conf/nginx.conf

修改nginx.conf文件下的root属性为proxy_pass(请求转发)格式如下:

 upstream tomcat1{

                   server 127.0.0.1:8081;

    }

    server {

        listen       80;

        server_name  xxx.com;

        location / {

            proxy_pass   http://tomcat1;

            index  index.html index.htm;

        }

}

location / {

                   proxy_pass http://server_lb; proxy_set_header Host $host;

                   proxy_set_header X-Real-IP $remote_addr;

                   proxy_set_header REMOTE-HOST $remote_addr;

                   proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

 }

你可能感兴趣的:(linux,nginx,linux,nginx)