/etc/red5/red5.xml is in red5-server 1.0~svn4374-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:lang="http://www.springframework.org/schema/lang"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-3.0.xsd">
<!-- This file just wires together the context tree. Its accessed by ContextSingletonBeanFactoryLocator -->
<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:/red5.properties" />
</bean>
<!-- First we load the common context, its shared between all the other contexts -->
<!-- Global context serves as the parent to all child contexts. -->
<bean id="red5.common" class="org.springframework.context.support.FileSystemXmlApplicationContext">
<constructor-arg><list><value>classpath:/red5-common.xml</value></list></constructor-arg>
</bean>
<!-- Then we load the core context, with the common as parent -->
<!-- Context holding all the networking, users should need to edit. -->
<bean id="red5.core" class="org.springframework.context.support.FileSystemXmlApplicationContext">
<constructor-arg><list><value>classpath:/red5-core.xml</value></list></constructor-arg>
<constructor-arg><ref bean="red5.common" /></constructor-arg>
</bean>
<!-- Then we load the global contexts, note its important this happens before app container loads -->
<bean id="context.loader" class="org.red5.server.ContextLoader">
<property name="parentContext" ref="red5.common" />
<property name="contextsConfig" value="classpath:/red5.globals" />
<property name="useShutdownHook" value="false" />
</bean>
<bean id="pluginLauncher" class="org.red5.server.plugin.PluginLauncher" />
<!-- Now we can load the JEE container / servlet engine -->
<import resource="classpath:/jee-container.xml"/>
</beans>
|