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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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解决

以上是关于nginx 代理java项目访问共享链接404的主要内容,如果未能解决你的问题,请参考以下文章

修改nginx配置文件访问后链接网页跳转nginx404错误页面

前端lvs访问多台nginx代理服务时出现404错误的处理

Linux下使用Nginx代理访问json文件包404错误

Nginx对于代理请求返回404,但是在直接访问时返回200

nginx和tomcat做整合,nginx代理访问tomcat页面,一级页面能访问,但是二级页面提示404错误。

wordpress配置固定链接nginx访问404问题解决方法