nginx与tomcat结合,动静分离

我们的网站是nginx+tomcat架构,前端用nginx来处理静态内容,动态的全交给tomcat来处理。之前的SA配置太过于简单,而且没有仔细梳理网站的流程。nginx与tomcat的安装就不说了,很easy,直接贴配置文件,作个笔记

nginx虚拟主机段配置

  
  
  
  
  1. server { 
  2.        listen       80; 
  3.        server_name  www.xxxx.com 192.168.8.62; 
  4.        index        index.html index.htm index.action; 
  5.        root         /var/www/; 
  6.  
  7.        if ($document_uri ~* "\.xhtml$") { 
  8.            rewrite ^/(.*).xhtml$ /$1.action last; 
  9.        } 
  10.  
  11.        location ~* \.(action|svl)?$ { 
  12.                 include         proxy.conf; 
  13.                 proxy_redirect  off; 
  14.                 proxy_pass      http://127.0.0.1:8080; 
  15.        } 
  16.  
  17.        location ~ (favicon.ico) { 
  18.                    log_not_found off; 
  19.                    expires max; 
  20.        } 
  21.  
  22.        location ~* ^/(WEB-INF)/ { 
  23.                 deny all; 
  24.        } 
  25.  
  26.        location /nginx_status { 
  27.                 stub_status on; 
  28.                 #auth_basic "nginx status"; 
  29.                 #auth_basic_user_file /usr/local/apache/htdocs/.htpasswd; 
  30.                 access_log off; 
  31.                 allow 192.168.8.253; 
  32.                 allow 127.0.0.1; 
  33.                 deny all; 
  34.        } 
  35.  

tomcat主配置文件主要部分 

  
  
  
  
  1. <Host name="www.jinfeicui.com"  appBase="webapps" 
  2.             unpackWARs="true" autoDeploy="true" 
  3.             xmlValidation="false" xmlNamespaceAware="false"> 
  4.  
  5.             <Context path="/" docBase="/var/www/" reloadable="true" debug="0"> 
  6.             </Context> 

 

你可能感兴趣的:(tomcat,nginx)