我有这个nginx配置来提供rails应用程序:location ^~ /api/ {alias /srv/www/rails/public/;try_files $uri @unicorn;}location @unicorn {proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_set_...
我有这个nginx配置来提供rails应用程序:
location ^~ /api/ {
alias /srv/www/rails/public/;
try_files $uri @unicorn;
}
location @unicorn {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://127.0.0.1:2007;
}
我想从路径的开头删除/ api /,然后将其传递给rails app,但由于它是一个命名位置,我不能在proxy_pass指令的末尾添加“/”,如何在传递请求之前删除/ api /到铁轨?
解决方法:
使用:
location @unicorn {
rewrite ^/api(.*)$$1 break;
...
}
有关详情,请参见this document.
沃梦达教程
本文标题为:ruby-on-rails – nginx:从命名位置的proxy_pass中删除路径
猜你喜欢
- Ruby的字符串与数组求最大值的相关问题讨论 2023-07-22
- Ruby on Rails在Ping ++ 平台实现支付 2023-07-22
- Ruby 迭代器知识汇总 2023-07-23
- Swift超详细讲解指针 2023-07-08
- Go Web开发进阶实战(gin框架) 2023-09-06
- R语言关于二项分布知识点总结 2022-11-30
- Golang http.Client设置超时 2023-09-05
- 汇编语言程序设计之根据输入改变屏幕颜色的代码 2023-07-06
- R语言-如何切换科学计数法和更换小数点位数 2022-11-23
- R语言绘图数据可视化pie chart饼图 2022-12-10