nginx 同網域名稱不同尾碼串連不同後端app

來源:互聯網
上載者:User

標籤:server   permanent   listen   

upstream uat_appnew {
  server 192.168.248.4:8081;
}

upstream uat_app {
  server 192.168.248.4:8080;
}

server {
    listen       80;
    server_name  www.zzh.com;
    charset     gbk;
    access_log  /var/log/nginx/host.access.log  main;
    rewrite ^(.*) https://$server_name$request_uri permanent;
}

server {
    listen      443;
    server_name  www.zzh.com;
    charset     gbk;
    access_log  /var/log/nginx/host.access.log  main;
    add_header X-Frame-Options "SAMEORIGIN";
    location / {
        rewrite ^/$  https://$server_name/estore/ permanent;
        #root   /usr/share/nginx/html;
        #index  index.html index.htm;
        proxy_max_temp_file_size         0k;
        #proxy_http_version 1.1;
        proxy_set_header Host            $host;
        proxy_set_header X-Real-IP       $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
       #proxy_set_header X-Frame-Options SAMEORIGIN;
       #proxy_set_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload";
        add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload";  
        add_header X-Frame-Options "SAMEORIGIN";
        proxy_pass http://uat_app;
    }

     location ~ /estoreNew {
        #rewrite ^/$  https://$server_name/estoreNew/ permanent;
        #root   /usr/share/nginx/html;
        #index  index.html index.htm;
        proxy_max_temp_file_size         0k;
        #proxy_http_version 1.1;
        proxy_set_header Host            $host;
        proxy_set_header X-Real-IP       $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
       #proxy_set_header X-Frame-Options SAMEORIGIN;
       #proxy_set_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload";
        add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload";  
        add_header X-Frame-Options "SAMEORIGIN";
        proxy_pass http://uat_appnew;
    }

    #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   /usr/share/nginx/html;
    }

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

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

本文出自 “freeterman” 部落格,請務必保留此出處http://myunix.blog.51cto.com/191254/1834926

nginx 同網域名稱不同尾碼串連不同後端app

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.