nginx简易配置

Posted cooolr

tags:

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

下载安装

http://nginx.org/en/download.html

yum install -y pcre pcre-devel openssl openssl-devel
tar -xf nginx-1.14.0.tar.gz 
cd nginx-1.14.0/
./configure --prefix=/usr/local/nginx  --with-http_stub_status_module --with-http_ssl_module
make && make install 

配置

vim /usr/local/nginx/conf/nginx.conf

关键配置

http

 upstream  web 
        server 127.0.0.1:50002;
        server 127.0.0.1:40002;
        server 127.0.0.1:30002;
        server 127.0.0.1:20002;

       

    server 
        listen       60002;
        server_name  127.0.0.1;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / 
                proxy_pass http://web;
        

运行

# 检查配置文件语法
/usr/local/nginx/sbin/nginx -t 
# 启动
/usr/local/nginx/sbin/nginx 
# 重启
/usr/local/nginx/sbin/nginx -s reload

以上是关于nginx简易配置的主要内容,如果未能解决你的问题,请参考以下文章

Nginx 简易教程

ini [nginx conf] nginx简易转发配置#nginx

nginx简易配置

NGINX按天生成日志文件的简易配置

LINUX——关于nginx的安装配置以及如何简易的使用

PHP简易系统环境控制