a一级爱做片免费观看欧美,久久国产一区二区,日本一二三区免费,久草视频手机在线观看

新聞中心

EEPW首頁 > 嵌入式系統 > 設計應用 > Nginx動靜態分離

Nginx動靜態分離

作者: 時間:2016-09-12 來源:網絡 收藏

worker_processes8;

本文引用地址:http://www.j9360.com/article/201609/304226.htm

events {

use epoll;

worker_connections1024;

}

http {

includemime.types;

default_typeapplication/octet-stream;

sendfileon;

keepalive_timeout65;

gzipon;

upstream tomcats{

server 127.0.0.1:8080;}

server {

listen80 default_server;

server_nametest.tiao.xxx.com;

#訪問/ROOT/下的static中的靜態文件

location ^~ /static/{

root/usr/local/tomcat/webapps/ROOT/;

}

location / {

#動態程序丟給后端tomcat處理方

proxy_passhttp://tomcats;

}

error_page500 502 503 504/50x.html;

location = /50x.html {

roothtml;

}

}

#網站靜態資源交給后端CDN處理

server {

listen80;

server_name static.test.tiao.xxx.com;

location / {

root/usr/local/tomcat/webapps/ROOT/static/;

}

error_page500 502 503 504/50x.html;

location = /50x.html {

roothtml;

}

}

}



關鍵詞: Nginx 動靜態分離

評論


技術專區

關閉