同じサイトでsubversionとwikiをホストしようとしています。
/ etc / apache2/sitesに2つのファイルを作成しました-利用可能
「破壊」で
私は持っています
<VirtualHost -myserverIP-:80>
ServerAdmin webmaster@localhost
ServerName svn.example.com
DocumentRoot /var/svn/repos
<Location /svn/repos>
DAV svn
SVNPath /var/svn/repos
AuthType Basic
AuthName "Subversion Repository"
AuthUserFile /etc/apache2/passwords
Require valid-user
</Location>
</VirtualHost>
そして「ウィキ」で私は持っています
<VirtualHost -myserverIP-:80>
ServerAdmin webmaster@localhost
ServerName wiki
ServerAlias -myserverIP-
DocumentRoot /home/www/wiki/html
<Directory /home/www/wiki/html>
AllowOverride None
Options -Indexes -MultiViews -SymLinksIfOwnerMatch +FollowSymLinks
Order allow,deny
allow from all
</Directory>
<Location /wiki>
</Location>
<DirectoryMatch "^/home/www/wiki/html/(data|conf|bin|inc)/">
Order allow,deny
Deny from all
Satisfy All
</DirectoryMatch>
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
ErrorLog /home/www/wiki/logs/error.log
CustomLog /home/www/wiki/logs/access.log combined
</VirtualHost>
ただし、サーバーのIPアドレスを参照すると、/ var / svn / reposディレクトリのコンテンツが表示されますが、wikiページが表示されたばかりの場合は、wikiインデックスページが表示されます。実際に-IPaddress-/svn / reposにアクセスしてSVNリポジトリを確認できますが、-IPaddress-/wikiが機能しません。
ヒントをありがとう