Project

General

Profile

How to configure root URL for redmine running on https

Added by Tuan Linh Chu over 11 years ago

I want to config https://my-ip.com to access Redmine instead of https://my-ip.com/redmine. If any one have solutions for this, plz tell me.
Thank you very much !


Replies (3)

RE: How to configure root URL for redmine running on https - Added by X Poison over 11 years ago

Suppose you're on Linux, just make your symbolic link to /var/www/ and not to /var/www/redmine.

RE: How to configure root URL for redmine running on https - Added by Tuan Linh Chu over 11 years ago

Can you tell me more plz, i'm noob :(

RE: How to configure root URL for redmine running on https - Added by Cheyenne Wills over 11 years ago

You can setup a redirect within your apache config

RedirectMatch ^/$ https://my.ip/redmine
Alias /redmine /var/lib/redmine/public # -- or whereever Redmine was installed
<Directory /var/lib/redmine/public>
...
</Directory>

You will also need to adjust Redmine's settings (in the administration Settings panel)

    (1-3/3)