-
Notifications
You must be signed in to change notification settings - Fork 241
/
kaltura.template.ans
77 lines (76 loc) · 2.77 KB
/
kaltura.template.ans
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
# local TZ to be used by PHP code. Note that it MUST be the same as your DB TZ.
TIME_ZONE="America/New_York"
# Apache port
KALTURA_VIRTUAL_HOST_PORT="443"
KALTURA_VIRTUAL_HOST_NAME="@HOSTNAME@"
# host and port
KALTURA_FULL_VIRTUAL_HOST_NAME="$KALTURA_VIRTUAL_HOST_NAME:$KALTURA_VIRTUAL_HOST_PORT"
# operational DB user and passwd
DB1_NAME="kaltura"
DB1_USER="kaltura"
PROTOCOL="https"
SERVICE_URL="$PROTOCOL://$KALTURA_FULL_VIRTUAL_HOST_NAME"
SPHINX_SERVER1="@HOSTNAME@"
SPHINX_SERVER2=" "
SPHINX_DB_HOST="@HOSTNAME@"
SPHINX_DB_PORT="3306"
# user name for the Kaltura Admin Console, MUST be in the form of an email
ADMIN_CONSOLE_ADMIN_MAIL="[email protected]"
# passwd for the Kaltura Admin Console
ADMIN_CONSOLE_PASSWORD="mypasswd"
# for installs that have no remote CDN storage, use the same as $KALTURA_VIRTUAL_HOST_NAME
CDN_HOST="@HOSTNAME@"
# display name used when sending the 'welcome' mail.
ENVIRONMENT_NAME="Kaltura Video Platform"
# what web I/F would you want to enable, options:
# 0 - All web interfaces
# 1 - Kaltura Management Console [KMC], Hosted Apps, HTML5 lib and ClipAp
# 2 - KAC - Kaltura Admin Console
CONFIG_CHOICE="0"
# are we working over SSL? needed since, if so, we perform cert validity checks
IS_SSL="y"
# hostname for Red5
RED5_HOST="@HOSTNAME@"
# allow the install scripts to send install data for analytics and support purposes:
# 1 - allow
# 0 - prevent
USER_CONSENT=1
# SSL cert path
CRT_FILE=/etc/ssl/certs/localhost.crt
# SSL key path
KEY_FILE=/etc/pki/tls/private/localhost.key
# if such exists enter path here, otherwise leave as is.
CHAIN_FILE=NONE
# Operational DB MySQL
DB1_HOST="@MYSQL_HOST@"
# MySQL PORT
DB1_PORT="@MYSQL_PORT@"
# desired passwd, make it good.
DB1_PASS="@KALT_DB_PASS@"
# analytics MySQL DB
DWH_HOST="@MYSQL_HOST@"
# analytics MySQL port
DWH_PORT="@MYSQL_PORT@"
# analytics MySQL port
DWH_PASS="@KALT_DB_PASS@"
# MySQL super user, this is only used for bootstrap, the app itself will not connect with it.
SUPER_USER="@MYSQL_SUPER_USER@"
SUPER_USER_PASSWD="@MYSQL_SUPER_USER_PASSWD@"
# For nginx packager module
VOD_PACKAGER_HOST="@NGINX_HOST@"
VOD_PACKAGER_PORT="@NGINX_PORT@"
# whether or not to configure Nginx over SSL
IS_NGINX_SSL="N"
# path to SSL cert
# SSL_CERT
# path to SSL key
# SSL_KEY
# NGINX SSL PORT - note, if you have Apache running over SSL as well and on port 443, do not select 443 here too
# VOD_PACKAGER_SSL_PORT=8443
WWW_HOST="@API_HOST_TO_USE_FOR_NGINX@"
# Range of ip addresses belonging to internal kaltura servers
# The range is used when checking service actions permissions and allowing to access certain services without KS from the internal servers.
# The default is only good for testing, on a production ENV you should adjust according to your network.
IP_RANGE="0.0.0.0-255.255.255.255"
# Port to use with Nginx's RTMP module
RTMP_PORT=1935