サブ URI redmine.example.org/redmineで Rails アプリを動作させており、 redmine.example.orgでそれを使用したい
/var/www/work/redmine.src is approot
/var/www/work/redmine is symlink to /var/www/work/redmine.src/public
<VirtualHost *:80>
DocumentRoot /var/www/work
ServerName redmine.example.org
ErrorLog /var/log/apache2/redmine-error_log
CustomLog /var/log/apache2/redmine-access_log combined
<Directory /var/www/work/redmine>
AllowOverride all
Options -MultiViews
Order allow,deny
allow from all
</Directory>
RackBaseURI /redmine
<Directory /var/www/work/redmine.src>
Options -MultiViews
Order allow,deny
allow from all
</Directory>
</VirtualHost>
多くの組み合わせとグーグル時間を試しましたが、何も機能しません。
サブドメイン ルートに redmine をデプロイするには、この構成をどのように変更すればよいですか?
前もって感謝します。