Red5にはサンプルアプリとそれらを使ったデモが幾つか同梱されている。だけど、セットアップしてみたものの、サンプルアプリがリストされない。
サンプルアプリのパスが間違ってるんじゃないかと思っていろいろ調べたところ、その通り。リポジトリのパスがGoogle Codeから自サーバーに変わったみたいだけど、それが反映されていない箇所があったので以下のように直す。
webapps/installer/WEB-INF/red5-web.properties
1 2 3 4 5 6 |
webapp.contextPath=/installer webapp.virtualHosts=localhost, localhost:5080 # Used by the installer to locate the available wars # application.repository.url=http://red5.googlecode.com/svn/snapshots/ application.repository.url=http://red5.org/snapshots/ |
Gitリポジトリはこちら。
red5-server/red5-web.properties at master · Red5/red5-server · GitHub
https://github.com/Red5/red5-server/blob/master/src/main/server/webapps/installer/WEB-INF/red5-web.properties
修正して再起動したらサンプルアプリがリストされるようになった。