]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.core/src/org/argeo/cli/jcr/repository-localfs.xml
Support PEM encrypted certificates.
[lgpl/argeo-commons.git] / org.argeo.core / src / org / argeo / cli / jcr / repository-localfs.xml
1 <?xml version="1.0"?>
2 <!--
3
4 Copyright (C) 2007-2012 Argeo GmbH
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17
18 -->
19 <!DOCTYPE Repository PUBLIC "-//The Apache Software Foundation//DTD Jackrabbit 1.6//EN"
20 "http://jackrabbit.apache.org/dtd/repository-2.0.dtd">
21 <Repository>
22 <!-- File system and datastore -->
23 <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
24 <param name="path" value="${rep.home}/repository" />
25 </FileSystem>
26 <DataStore class="org.apache.jackrabbit.core.data.FileDataStore">
27 <param name="path" value="${rep.home}/datastore" />
28 </DataStore>
29
30 <!-- Workspace templates -->
31 <Workspaces rootPath="${rep.home}/workspaces"
32 defaultWorkspace="main" configRootPath="/workspaces" />
33 <Workspace name="${wsp.name}">
34 <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
35 <param name="path" value="${wsp.home}" />
36 </FileSystem>
37 <PersistenceManager
38 class="org.apache.jackrabbit.core.persistence.bundle.BundleFsPersistenceManager">
39 <param name="blobFSBlockSize" value="1" />
40 </PersistenceManager>
41 <SearchIndex class="org.apache.jackrabbit.core.query.lucene.SearchIndex">
42 <param name="path" value="${rep.home}/repository/index" />
43 </SearchIndex>
44 </Workspace>
45
46 <!-- Versioning -->
47 <Versioning rootPath="${rep.home}/version">
48 <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
49 <param name="path" value="${rep.home}/version" />
50 </FileSystem>
51 <PersistenceManager
52 class="org.apache.jackrabbit.core.persistence.bundle.BundleFsPersistenceManager">
53 <param name="blobFSBlockSize" value="1" />
54 </PersistenceManager>
55 </Versioning>
56
57 <!-- Indexing -->
58 <SearchIndex class="org.apache.jackrabbit.core.query.lucene.SearchIndex">
59 <param name="path" value="${rep.home}/repository/index" />
60 <param name="tikaConfigPath" value="tika-config.xml"/>
61 </SearchIndex>
62
63 <!-- Security -->
64 <Security appName="Jackrabbit">
65 <SecurityManager
66 class="org.apache.jackrabbit.core.security.simple.SimpleSecurityManager"
67 workspaceName="security" />
68 <AccessManager
69 class="org.apache.jackrabbit.core.security.simple.SimpleAccessManager" />
70 <LoginModule
71 class="org.apache.jackrabbit.core.security.simple.SimpleLoginModule">
72 <param name="anonymousId" value="anonymous" />
73 <param name="adminId" value="admin" />
74 </LoginModule>
75 </Security>
76 </Repository>