mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
22041: ALF-3785 Configurable site public group. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@22043 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
46 lines
1.4 KiB
XML
46 lines
1.4 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
|
|
<beans>
|
|
|
|
<bean id="sysAdminParams" class="org.alfresco.repo.admin.SysAdminParamsImpl">
|
|
<property name="maxUsers">
|
|
<value>${server.maxusers}</value>
|
|
</property>
|
|
<property name="allowedUsers">
|
|
<value>${server.allowedusers}</value>
|
|
</property>
|
|
<property name="allowWrite">
|
|
<value>${server.transaction.allow-writes}</value>
|
|
</property>
|
|
<property name="alfrescoContext">
|
|
<value>${alfresco.context}</value>
|
|
</property>
|
|
<property name="alfrescoHost">
|
|
<value>${alfresco.host}</value>
|
|
</property>
|
|
<property name="alfrescoPort">
|
|
<value>${alfresco.port}</value>
|
|
</property>
|
|
<property name="alfrescoProtocol">
|
|
<value>${alfresco.protocol}</value>
|
|
</property>
|
|
|
|
<property name="shareContext">
|
|
<value>${share.context}</value>
|
|
</property>
|
|
<property name="shareHost">
|
|
<value>${share.host}</value>
|
|
</property>
|
|
<property name="sharePort">
|
|
<value>${share.port}</value>
|
|
</property>
|
|
<property name="shareProtocol">
|
|
<value>${share.protocol}</value>
|
|
</property>
|
|
|
|
<property name="sitePublicGroup" value="${site.public.group}" />
|
|
</bean>
|
|
|
|
</beans>
|