Added by simon rain about 10 years ago
hi,all
I deploy redmine 2.5 on my server, and I want remine works like "http://domain/redmine"
In nginx config file, I add some directive as below
location ~ ^/redmine(/.*) {
proxy_pass http://211.113.114.3:3000/redmine/$1;
}
I can visit http://domain/redmine, but the css not work. becoz the browser always get the css or js files from http://domain/stysheets or http://domain/javascripts,so the page is ugly.
who can give any advice?