解决nginx 部署前端post请求405 not allowed

原因:nginx 静态资源访问不支持post请求。

解决方案:

html 复制代码
       upstream static_backend {
            server localhost:9095;
       }

       location / {
            root  /usr/local/dist;
            try_files $uri $uri/ /index.html;
            index  index.html index.htm;
            error_page 405 =200 @405;  #405页面处理
       }

        #加入下面代码
       location @405 {
             proxy_set_header Host $host; 
             proxy_set_header X-Real-IP $remote_addr;
             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;  
             #ip为后端服务地址
             proxy_pass http://localhost:9095$request_uri ;
       }

或者

javascript 复制代码
location / {
        root /usr/share/nginx/html/cashier;
        try_files $uri $uri/ /index.html;
        index index.html index.htm;
        error_page 405 =200  $request_uri; // $request_uri这个参数的含义下面有解释
}
相关推荐
zym大哥大1 分钟前
Linux的权限
linux·服务器
伴野星辰26 分钟前
小乌龟TortoiseGit 安装和语言包选择
linux·运维·服务器
残念ing34 分钟前
【Linux】—简单实现一个shell(myshell)
linux·运维·服务器
寒雒36 分钟前
【Python】实战:实现GUI登录界面
开发语言·前端·python
明月心95241 分钟前
linux mount nfs开机自动挂载远程目录
linux·运维·服务器
独上归州42 分钟前
Vue与React的Suspense组件对比
前端·vue.js·react.js·suspense
Ray55051 小时前
bridge-multicast-igmpsnooping
linux·服务器·网络
Komorebi⁼1 小时前
Vue核心特性解析(内含实践项目:设置购物车)
前端·javascript·vue.js·html·html5
明月清风徐徐1 小时前
Vue实训---0-完成Vue开发环境的搭建
前端·javascript·vue.js
SameX1 小时前
HarmonyOS Next 企业数据备份与恢复策略
前端·harmonyos