Window使用nginx

Window使用nginx



前言

Nginx是一款轻量级web服务器、也是一款反向代理服务器

Nginx的功能

     (1)可直接支持Rails和PHP的程序

     (2)可以作为HTTP的反向代理服务器

     (3)可作为负载均衡服务器

     (4)可作为邮件代理服务器

     (5)帮助实现前端动静分离

————————————————
Nginx的特点

    1、 高稳定、高性能、资源占用少

     2、功能丰富、模块化结构、支持热部署

一、下载nginx

下载路径:http://www.nginx.org/
解压后如下:
在这里插入图片描述

二、Nginx配置

配置文件在 conf 目录里的 nginx.conf 文件

1.配置信息如下

配置文件如下(示例):


#user  nobody;
//指定nginx进程数
worker_processes  1;
//全局错误日志及PID文件
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
	// 连接数上限
    worker_connections  1024;
}
	//设定http服务器,利用它的反向代理功能提供负载均衡支持

http {
	//设定mime类型,类型由mime.type文件定义
    include       mime.types;
    default_type  application/octet-stream;
	//设定日志格式
    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';
	//使用哪种格式的日志
    #access_log  logs/access.log  main;
	//sendfile 指令指定 nginx 是否调用 sendfile 函数(zero copy 方式)来输出文件,对于普通应用
    sendfile        on;
    #tcp_nopush     on;	
	//连接超时时间
    #keepalive_timeout  0;
    keepalive_timeout  65;
	//开启gzip压缩 ,压缩html
    #gzip  on;

	//设定负载均衡的服务器列表 支持多组的负载均衡,可以配置多个upstream  来服务于不同的Server.
	upstream Jq_one{ 
 
   //weigth参数表示权值,权值越高被分配到的几率越大   
 
     //down 表示单前的server暂时不参与负载
 
      //weight 默认为1.weight越大,负载的权重就越大。     
 
    //backup: 其它所有的非backup机器down或者忙的时候,请求backup机器。所以这台机器压力会最轻。  
      
 	 server 127.0.0.1:44397 weight=2;
 
 	 server 127.0.0.1:44315 weight=4;
 
    	}
	//配置代理服务器的地址,即Nginx安装的服务器地址、监听端口、默认地址
    server {
   	 //侦听8456端口
        listen       8456;
        //对于server_name,如果需要将多个域名的请求进行反向代理,可以配置多个server_name来满足要
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;
	
        location / {
        //默认主页目录在nginx安装目录的html子目录。
        	 root   html;
            index  default.aspx;
            proxy_pass https://Jq_one;
             proxy_set_header Host $host;//跟载均衡服务器的upstream对应 
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

2.启动Nginx

在这里插入图片描述

命令如下(示例):

	 start nginx  //启动nginx	
	 nginx.exe -s stop  //停止nginx
   	 nginx.exe -s reload  //重启nginx
	 nginx.exe -s quit  //安全退出

3.检查nginx是否启动

win+r 输入一下命令:

tasklist | findstr nginx

如果正常启动会是以下输出
在这里插入图片描述

如果没有正常启动会输入以下内容
在这里插入图片描述

注意:

上面配置文件中是使用的127.0.0.1需要注意的是有的电脑没有配置的话可能会出现localhost可以访问但是127.0.1无法访问的情况。出现这种问题的话需要修改host文件


总结

人们应该庆幸不知道何时离开这个世界,这样才能让他们心安的沉迷眼前的纸醉金迷。

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

或与且与或非

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值