zoukankan      html  css  js  c++  java
  • Nginx下配置Https 配置文件(vue)

    #user nobody;
    worker_processes 1;
    
    #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 {
    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 on;
    #tcp_nopush on;
    
    #keepalive_timeout 0;
    keepalive_timeout 65;
    
    #gzip on;
    
    server {
    listen 7777;
    server_name localhost;
    
    #charset koi8-r;
    
    #access_log logs/host.access.log main;
    
    location / {
    if (!-e $request_filename) {
    rewrite ^(.*)$ /index.html?s=$1 last;
    break;
    }
    root /usr/local/chip/product/crdp_plus;
    index index.html;
    }
    
    location /portal-ui {
    root html;
    index index.html index.htm;
    try_files $uri $uri/ /monitor-view/index.html;
    }
    
    location /crdp/ {
    proxy_pass http://127.0.0.1:8888;
    }
    location /swagger-ui.html {
    proxy_pass http://127.0.0.1:8888;
    }
    location /swagger-resources {
    proxy_pass http://127.0.0.1:8888;
    }
    location /swagger {
    proxy_pass http://127.0.0.1:8888;
    }
    location /webjars {
    proxy_pass http://127.0.0.1:8888;
    }
    location /v2 {
    proxy_pass http://127.0.0.1:8888;
    }
    location /druid {
    proxy_pass http://127.0.0.1:8888;
    }
    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;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    
    client_max_body_size 5m;
    #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 8787 ssl;
    server_name 192.168.13.192;
    ssl_certificate /usr/local/ssl/nginx.crt; #证书公钥
    ssl_certificate_key /usr/local/ssl/nginx.key; #证书私钥
    ssl_session_cache shared:SSL:1m;
    ssl_session_timeout 5m;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; 
    ssl_ciphers ECDH:AESGCM:HIGH:!RC4:!DH:!MD5:!3DES:!aNULL:!eNULL;
    ssl_prefer_server_ciphers on;
    
    root /usr/local/ui_workspace;
    index /appBaoJian/index.html;
    
    location /appBaoJian {
    root /usr/local/ui_workspace;
    index index.html index.htm;
    try_files $uri $uri/ /appBaoJian/index.html;
    }
    
    location /chhm-service/ {
    proxy_pass http://192.168.13.77:8380;
    }
    
    }
    server {
    listen 8686 ssl;
    server_name 192.168.13.192;
    ssl_certificate /usr/local/ssl/nginx.crt; #证书公钥
    ssl_certificate_key /usr/local/ssl/nginx.key; #证书私钥
    ssl_session_cache shared:SSL:1m;
    ssl_session_timeout 5m;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; 
    ssl_ciphers ECDH:AESGCM:HIGH:!RC4:!DH:!MD5:!3DES:!aNULL:!eNULL;
    ssl_prefer_server_ciphers on;
    
    root /usr/local/ui_workspace;
    index /crpge/index.html;
    
    location /crpgea {
    root /usr/local/ui_workspace;
    index index.html index.htm;
    try_files $uri $uri/ /crpge/index.html;
    }
    
    location /crpgeb {
    root /usr/local/ui_workspace;
    index index.html index.htm;
    try_files $uri $uri/ /crpge/hospital.html;
    }
    
    location /crpge/v1 {
    proxy_http_version 1.1;
    proxy_set_header Host $http_host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_pass http://127.0.0.1:18888/crpge/v1;
    }
    
    }
    
    }
  • 相关阅读:
    2018年全国多校算法寒假训练营练习比赛(第二场)F
    牛客练习赛2 A
    牛客练习赛1 C
    牛客练习赛1 B
    vb编程代码大全
    javascript编程代码笔记
    391.FANUC宏程序编程
    宏程序编程实例,简单易懂
    Java类与类之间的关系详细介绍
    C++虚继承时的构造函数的讲解
  • 原文地址:https://www.cnblogs.com/scale/p/11423378.html
Copyright © 2011-2022 走看看