user  nobody;
worker_processes  1;

error_log  /home/logs/error.log  info;

#pid        logs/nginx.pid;

events {
    worker_connections  1024;
}

http {
    include       /usr/local/nginx-1.15.5/conf/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        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;
   client_max_body_size    1024m;

    server {
        listen       10998 ssl;
        server_name  ams.tebon.com.cn;
        #ssl config
        ssl_certificate      /home/conf/tebon2019.pem;
        ssl_certificate_key  /home/conf/tebon2019.key;
        ssl_session_timeout  5m;
        ssl_protocols  TLSv1 TLSv1.1 TLSv1.2;
        ssl_ciphers  HIGH:!RC4:!MD5:!aNULL:!eNULL:!NULL:!DH:!EDH:!EXP:+MEDIUM;
        ssl_prefer_server_ciphers   on;
        #charset koi8-r;

        access_log  /home/logs/host.access.log  main;
                root /home/node_dir;
                index index.html;
        location / {
        try_files $uri $uri/ @router;
        index index.html;
        }
        location = /index.html {
           add_header Cache-Control "no-cache, no-store";
        }

        location @router {
        rewrite ^.*$ /index.html last;
        }
    
        #log in
        location ~\/api {
        proxy_pass http://192.168.222.36:8777;
        client_max_body_size    200m;
        proxy_connect_timeout 300s;
        proxy_send_timeout 600s;
         proxy_read_timeout 600s;
        rewrite ^/api/(.*)$ /$1 break;
        }

        #gateway
        location ~ \/(design|monitor|procedure|sys-manage|duration|security-price|suning|investor|self)\/ {
        proxy_pass   https://192.168.3.103:10443;
        client_max_body_size    1024m;
        proxy_connect_timeout 300s;
        proxy_send_timeout 600s;
         proxy_read_timeout 18000s;
        rewrite ^/api/(.*)$ /$1 break;
        }

        #mindoc
        location ~\/min-docs {
                proxy_pass   http://192.168.222.68:8181;
                client_max_body_size    200m;
                proxy_connect_timeout 300s;
                proxy_send_timeout 600s;
                proxy_read_timeout 600s;
                rewrite ^/min-docs/(.*)$ /$1 break;
        }
        #error_page  404              /404.html;

        #error process
        #redirect server error pages to the static page /50x.html
        
        error_page 404 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;
        #}
    }

            server {
        listen       10998 ssl;
        server_name  wiki.ams.tebon.com.cn;
        #ssl config
        ssl_certificate      /home/conf/tebon2019.pem;
        ssl_certificate_key  /home/conf/tebon2019.key;
        ssl_session_timeout  5m;
        ssl_protocols  TLSv1 TLSv1.1 TLSv1.2;
        ssl_ciphers  HIGH:!RC4:!MD5:!aNULL:!eNULL:!NULL:!DH:!EDH:!EXP:+MEDIUM;
        ssl_prefer_server_ciphers   on;
        #charset koi8-r;

        access_log  /home/logs/host.access.log  main;
                root /home/node_dir;
                index index.html;

        location @router {
        rewrite ^.*$ /index.html last;
        }
    

        location / {
        proxy_pass   http://192.168.222.68:8181;
                client_max_body_size    200m;
        proxy_connect_timeout 300s;
        proxy_send_timeout 600s;
         proxy_read_timeout 600s;
        rewrite ^/api/(.*)$ /$1 break;
        }

        
        error_page 404 500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

       
    }

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

    server {
        listen       9091;
        server_name  192.168.3.103;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

                root /home/node_dir;
                index index.html;
        location / {
            proxy_pass   https://192.168.3.103:10443;
            client_max_body_size 100M;
            proxy_ignore_client_abort on;
        }
    }
    server {
        listen       9092;
        server_name  192.168.3.103;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

                root /home/node_dir;
                index index.html;
        location / {
            proxy_pass   http://192.168.222.68:8181;
        }
    }

}

nginx103的更多相关文章

  1. HAProxy实战

    实验目的 测试基于haproxy的反代和负载均衡配置 测试keepalived高可用haproxy的效果 实验要点 (1) 动静分离discuzx,动静都要基于负载均衡实现: (2) 进一步测试在ha ...

  2. Docker数据管理与挂载管理

    介绍如何在 Docker 内部以及容器之间管理数据:在容器中管理数据主要有两种方式:数据卷(Volumes).挂载主机目录 (Bind mounts) 镜像来源 [root@docker01 ~]# ...

随机推荐

  1. Jmeter性能测试场景的创建和运行

    目录 性能测试场景的分析 项目背景 Jmeter指标 性能测试场景的设计以及准备 性能测试的总结 性能测试场景的分析 项目背景 ​ 实际工作中,我们拿到一个项目一般来说都会是项目经理说XXX来进行一下 ...

  2. [多线程]async异步操作的使用实例及不同策略的对比

    #include <iostream> #include <thread> #include <mutex> #include <iostream> / ...

  3. 数据可视化 gojs 简单使用介绍

    目录 1. gojs 简介 2. gojs 应用场景 3. 为什么选用 gojs: 4. gojs 上手指南 5. 小技巧(非常实用哦) 6. 实践:实现节点分组关系可视化交互图 最后 本文是关于如何 ...

  4. 基于Spring MVC + Spring + MyBatis的【银行卡系统】

    资源下载:https://download.csdn.net/download/weixin_44893902/45604256 练习点设计: 删除.新增 一.语言和环境 实现语言:JAVA语言. 环 ...

  5. Spring企业级程序设计 • 【第4章 Spring持久化层和事务管理】

    全部章节   >>>> 本章目录 4.1 配置数据源资源 4.1.1 JdbcTemplate介绍 4.1.2通过ComboPooledDataSource创建数据源 4.1. ...

  6. Spring企业级程序设计 • 【第1章 Spring之旅】

    全部章节   >>>> 本章目录 1.1 Spring框架基础 1.1.1 Spring特点及体系结构 1.1.1 Spring的体系结构 1.1.2  使用Eclipse搭建 ...

  7. Java Web程序设计笔记 • 【第6章 Servlet技术进阶】

    全部章节   >>>> 本章目录 6.1 应用 Servlet API(一) 6.1.1 Servlet 类的层次结构 6.1.2 使用 Servlet API 的原则 6.1 ...

  8. 使用 DML语句,对 “锦图网” 数据进行操作,连接查询(内连接,左外连接,右外连接,全连接)

    查看本章节 查看作业目录 需求说明: 对 "锦图网" 数据进行操作: 统计每一种线路类型的线路数量.最高线路价格.最低线路价格和平均线路价格,要求按照线路数量和平均线路价格升序显示 ...

  9. Windows下安装配置Maven

    1.下载Maven 官方下载地址:http://maven.apache.org/download.cgi 目前Apache Maven最小版本为3.6.3, 下载适合Windows的安装包apach ...

  10. 关于C#的decimal浮点类型转化成字符串时末尾存在多个0

    首先,对于浮点类型,double和float存在精度丢失问题,这一点在之前的一篇博文中有提到(C# double类型精度丢失问题),于是,一般时候推荐大家使用decmal,特别是涉及到一些金融计算时, ...