nginx 代理java项目访问共享链接404

今天配置项目,由于静态资源需要共享,创建了共享目录做静态资源,然后java静态路径引用一个软链接,访问404

1.项目资源路径:

total 12
drwxr-x--- 3 root  root  4096 May  2 14:12 META-INF
drwxr-x--- 2 root  root  4096 May  2 14:12 sdweb
lrwxrwxrwx 1 nginx nginx   29 May  2 15:15 static -> /var/ckl/static/
drwxr-x--- 5 root  root  4096 May  2 14:12 WEB-INF

链接为共享静态资源

2.访问报错404,解决:

配置tomcat 的context.xml 

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<!-- The contents of this file will be loaded for each web application -->
<Context>
    <Resources allowLinking="true" />  //增加此行

    <!-- Default set of monitored resources. If one of these changes, the    -->
    <!-- web application will be reloaded.                                   -->
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
    <WatchedResource>${catalina.base}/conf/web.xml</WatchedResource>

    <!-- Uncomment this to disable session persistence across Tomcat restarts -->
    <!--
    <Manager pathname="" />
    -->
</Context>

3.重启tomcat解决


注意:如果配置了虚拟目录,需要在自己的目录下也要加此行,否则静态资源无法访问

<Resources allowLinking="true" />


猜你喜欢

转载自blog.51cto.com/ckl893/2110939
今日推荐