zoukankan      html  css  js  c++  java
  • nigex *

    下载网址:http://nginx.org/en/download.html   直接下载Stable version版本就好

    下载之后解压 我是解压到E盘了

    nginx 常用命令:   在nginx文件夹下使用

    nginx -t   检查配置文件是否配置成功

    start nginx   启动运行nginx服务

    nginx -s quit   任务完成之后,关闭Nginx服务

    nginx -s stop   强制关闭Nginx服务

    nginx -s reload  重启   (更改配置文件需要重启)

    配置 

    server {
    listen 80;
    server_name localhost;

    #charset koi8-r;

    #access_log logs/host.access.log main;

    location /test1/ {
    proxy_pass http://127.0.0.1:8088/;
    proxy_redirect default;
    }

    location /test2/ {
    proxy_pass http://127.0.0.1:9002/;
    proxy_redirect default;
    }

    #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;
    #}
    }

      

  • 相关阅读:
    佛教哲学 学习笔记 01-我愿为十方人做桥
    动手学python之python基础:标识符,注释及缩进
    动手学python系列序言
    基于深度学习的目标检测综述(一):简介及骨干网络
    软件项目风险管理
    axure
    软件项目管理
    软件测试方法
    期中总结
    UML图相关
  • 原文地址:https://www.cnblogs.com/cjb1/p/12719857.html
Copyright © 2011-2022 走看看