インストール済みのRedmineにApacheを設定する際に問題があります。URLサブディレクトリにRedmineをインストールするためのApache設定
/usr/local/lib/
ディレクトリにRedmine(v 1.2.1)が正常にインストールされており、正常に動作しています。 Redmineがhttp://myhost/redmineでアクセス可能になるようにApacheを設定したいのですが、は、http://myhost/にバインドされた/var/www
にワードプレスベースのWebサイトをインストールしました。私は何をすべきか?
ここに私の現在のApacheの設定(/etc/apache2/sites-enabled/001-redmine
):
<VirtualHost *:80>
ServerName myhost
DocumentRoot /usr/local/lib/redmine-1.2.1/public
ServerSignature off
<Directory />
Order Deny,Allow
Deny from all
</Directory>
<Directory /usr/local/lib/redmine-1.2.1/public>
AllowOverride None
Order allow,deny
Allow from all
Options Indexes ExecCGI FollowSymLinks
Options -MultiViews
</Directory>
ErrorLog /var/log/apache2/redmine-error.log
CustomLog /var/log/apache2/redmine-access.log combined
</VirtualHost>
感謝。