1 |
tamasb |
2883 |
<config> |
2 |
|
|
|
3 |
|
|
<service name="default" alias="{{ mp_server_conf }}"/> |
4 |
|
|
|
5 |
|
|
<!-- ############################################################################## --> |
6 |
|
|
|
7 |
tamasb |
2994 |
<service name="mysql-mp-server-config" address="https://{{ inventory_hostname }}/{{ mp_server }}" debug="true"> |
8 |
tamasb |
2883 |
|
9 |
|
|
<logging logFileName="{{ mp_server_log_dir }}/{{ mp_server }}.log" |
10 |
|
|
logName="MP" |
11 |
|
|
logSize="1000000" |
12 |
|
|
logFileCount="10" |
13 |
|
|
debug="true" |
14 |
|
|
/> |
15 |
|
|
|
16 |
tamasb |
3014 |
<scopes handler="org.masterportal.oauth2.server.MPForwardingScopeHandler"> |
17 |
|
|
<scope>org.cilogon.userinfo</scope> |
18 |
|
|
</scopes> |
19 |
|
|
|
20 |
tamasb |
2883 |
<mysql username="{{ mp_server_db_user }}" |
21 |
|
|
password="{{ mp_server_db_pw }}" |
22 |
|
|
database="{{ mp_server_db }}" |
23 |
|
|
schema="{{ mp_server_db }}" > |
24 |
|
|
<transactions/> |
25 |
|
|
<clients/> |
26 |
|
|
<clientApprovals/> |
27 |
|
|
</mysql> |
28 |
|
|
|
29 |
|
|
<myproxy host="{{ credstore_host }}" port="{{ credstore_port }}" password="{{ credstore_pw }}"> |
30 |
|
|
<keystore path="{{ mp_server_keystore }}" |
31 |
|
|
type="pkcs12" |
32 |
|
|
password="{{ mp_server_keystore_pw }}" |
33 |
|
|
factory="SunX509" /> |
34 |
|
|
</myproxy> |
35 |
|
|
|
36 |
|
|
<!-- <authorizationServlet useHeader="true" requireHeader="true" headerFieldName="eppn" /> --> |
37 |
|
|
|
38 |
|
|
</service> |
39 |
|
|
|
40 |
|
|
<!-- ############################################################################## --> |
41 |
|
|
|
42 |
tamasb |
2994 |
<service name="filestore-mp-server-config" address="https://{{ inventory_hostname }}/{{ mp_server }}" debug="true"> |
43 |
tamasb |
2883 |
|
44 |
|
|
<logging logFileName="{{ mp_server_log_dir }}/{{ mp_server }}.log" |
45 |
|
|
logName="MP" |
46 |
|
|
logSize="1000000" |
47 |
|
|
logFileCount="10" |
48 |
|
|
debug="true" |
49 |
|
|
/> |
50 |
|
|
|
51 |
tamasb |
3014 |
<scopes handler="org.masterportal.oauth2.server.MPForwardingScopeHandler"> |
52 |
|
|
<scope>org.cilogon.userinfo</scope> |
53 |
|
|
</scopes> |
54 |
|
|
|
55 |
tamasb |
2883 |
<fileStore path="{{ mp_server_storage_dir }}"> |
56 |
|
|
<transactions/> |
57 |
|
|
<clients/> |
58 |
|
|
<clientApprovals/> |
59 |
|
|
</fileStore> |
60 |
|
|
|
61 |
|
|
<myproxy host="{{ credstore_host }}" port="{{ credstore_port }}" password="{{ credstore_pw }}"> |
62 |
|
|
<keystore path="{{ mp_server_keystore }}" |
63 |
|
|
type="pkcs12" |
64 |
|
|
password="{{ mp_server_keystore_pw }}" |
65 |
|
|
factory="SunX509" /> |
66 |
|
|
</myproxy> |
67 |
|
|
|
68 |
|
|
<!-- <authorizationServlet useHeader="true" requireHeader="true" headerFieldName="eppn" /> --> |
69 |
|
|
|
70 |
|
|
</service> |
71 |
|
|
|
72 |
|
|
</config> |
73 |
|
|
|