1. 程式人生 > >基於ngnix+tomcat實現的動靜分離(Windows)

基於ngnix+tomcat實現的動靜分離(Windows)

安裝ngnix

  • 下載安裝包,並解壓
    ngnix下載地址
    這裡寫圖片描述
    下載完成後,直接解壓即可。

  • 啟動ngnix
    這裡寫圖片描述
    啟動會閃一下,這是正常情況,無須重新執行。也可以通過工作管理員檢視是否有nginx程序判斷是否已經啟動

如果出現如下頁面即為正常
這裡寫圖片描述

  • 停止nginx服務
    這裡寫圖片描述

安裝tomcat

配置nginx.conf

  • 修改參考配置中的資原始檔的存放位置

這裡寫圖片描述

參考配置

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

    upstream t1.test.com {server localhost:8080;}

    server {
        listen       80;
        server_name  t1.test.com;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;


        location ~ .*\.(html|htm|gif|jpg|jpeg|bmp|png|ico|txt|js|css|woff|woff2|ttf|svg)$ {
            root D:\web\admin;
            expires 3d;
        }

        location / {
            proxy_connect_timeout   3;
            proxy_send_timeout      30;
            proxy_read_timeout      30;
            proxy_pass http://t1.test.com;
        }

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

}
  • 啟動並進行驗證
    如果訪問 http://localhost 進入tomcat的歡迎頁面,並且頁面的展示樣式丟失。
    類似:
    這裡寫圖片描述
    表示tomcat的代理配置成功,動靜分離配置成功。

nginx.conf 配置部分解釋

upstream: 設定server 代理資訊,並可以設定server的負載均衡的權重

upstream t1.test.com {server localhost:8080;}

server:允許的訪問服務資訊
listen: 訪問埠
server_name 設定服務名。這裡通過引用server代理地址。

    server {
        listen       80;
        server_name  t1.test.com;

代理配置資訊:

        location / {
            proxy_connect_timeout   3;
            proxy_send_timeout      30;
            proxy_read_timeout      30;
            proxy_pass http://t1.test.com;
        }

靜態資源的處理方式: 所有以.html等結尾的訪問請求,全都指向 root 配置的目錄地址。

        location ~ .*\.(html|htm|gif|jpg|jpeg|bmp|png|ico|txt|js|css|woff|woff2|ttf|svg)$ {
            root D:\web\admin;
            expires 3d;
        }