我想将 redmine(在 localhost:3000 独立乘客上监听)放在 nginx 后面,http://domain.com/redmine
使用这个简单的 nginx 配置提供服务:
server {
location /redmine/ {
proxy_pass http://domain.com:3000/;
}
}
我根据此 HOWTOconfig/environments.rb
的说明重写了 redmine ,并且 redmine 正确地重写了静态资产 URL,但控制器 URL 没有被重写,例如。设置指向而不是.http://domain.com/settings
http://domain.com/redmine/settings
如何正确配置 redmine 以在 nginx 后面运行?