-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.dist.yml
85 lines (83 loc) · 2.74 KB
/
config.dist.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Cross-origin resource sharing related settings.
cors:
# Allowed origins. Add one entry for each domain allowed to access the application.
# Always include the protocol (http or https) and if not default for the
# protocol, also the port number!
origins:
- http://localhost:9999
# Toggle Silex' global debug mode.
#debug: true
debug: false
# UiTID related settings.
uitid:
# UiTID consumer key and secret.
consumer:
key: ***
secret: ***
# Base URL of the UiTID API.
#base_url: https://acc.uitid.be/uitid/rest/
base_url: http://www.uitid.be/uitid/rest/
auth0:
enable: true
domain: publiq-acc.eu.auth0.com
client_id: ***
client_secret: ***
callback_url: https://balie.uitpas.dev/oauth/culturefeed/authorize
app_url: https://balie.uitpas.dev/app
login_parameters:
locale: nl
referrer: uitpas
prompt: login
# UiT Search API related settings.
search:
# Base URL of the UiT Search API.
#base_url: https://acc.uitid.be/uitid/rest/searchv2
base_url: http://www.uitid.be/uitid/rest/searchv2
# Balie insights related settings
balie_insights:
# Base URL for the balie insights API.
base_url: http://test-balieinsights.uitdatabank.be/api/
# Mail related settings.
swiftmailer.options:
# This connects to a mailserver at port 1025
# This is not the standard SMTP port, but the default port of Mailcatcher,
# a great tool for debugging mail. Check it out! http://mailcatcher.me/
host: 127.0.0.1
port: 1025
# Feedback form related settings.
feedback:
# Sender address. Make sure this address is allowed to send mail from the server
# the application is running on. Sender Policy Framework or other anti-spam
# systems might block the e-mail otherwise.
from: [email protected]
# Addressee of the e-mail.
# Subject line of the e-mail.
subject: "UiTPAS balie beheer feedback."
# Settings related to the HTTP client used to connect with Search API and UiTID.
httpclient:
# HTTP connect & response timeout.
timeout: 30
# Activate additional bootstrap files. Each key below suffixed with .php
# corresponds to a file in the bootstrap directory. Value 'false' means do not
# load it, true' means load it!
bootstrap:
# Toggle logging of UiT Search and UiTID API requests, into log files in the
# log directory.
#logging: true
logging: false
# Pairs of UiTID user names and a list of roles granted.
#
# The following roles are currently in use by the application:
# - ROLE_HELP_EDIT: Edit the contents of the Help section of the application.
#
# In the example below, johndoe and janedoe are UiTID user names.
roles:
johndoe:
- ROLE_HELP_EDIT
janedoe:
- ROLE_HELP_EDIT
# Export related settings.
export:
# How many items to retrieve per single UiTID API request.
limit_per_api_request: 50