This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.env.example
139 lines (113 loc) · 5.18 KB
/
.env.example
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
###############################################################################
###############################################################################
# Environment
#
###############################################################################
# Type: string
# ENVIRONMENT=production
###############################################################################
###############################################################################
# HTTP Server
#
########################################################################################################################
# IP and port for the HTTP server.
# Type: string
# Default: :80
# HTTP_ADDR=:80
###############################################################################
# Base URL (prefix) for all routes (<baseUrl>/api, ...)
# Type: string
# Default: /
# HTTP_BASE_URL=/
###############################################################################
# When webapps are enabled (HTTP_WEBAPP_ENABLED) this is moved to '/api' if not explicitly set otherwise.
# API base URL is internally prefixed with baseUrl
# Type: string
# Default: /
# HTTP_API_BASE_URL=/
###############################################################################
# Delays API startup for the amount of time specified (10s, 2m...).
# This delay happens before service (`WAIT_FOR_SERVICES`) probing.
# Type: time.Duration
# Default: <no value>
# WAIT_FOR=<no value>
###############################################################################
# Show temporary status web page.
# Type: bool
# Default: <no value>
# WAIT_FOR_STATUS_PAGE=<no value>
###############################################################################
###############################################################################
# Open search configuration
#
###############################################################################
# IP and port for the open search.
# Use space delimited string to set multiple addresses.
# Type: []string
# ES_ADDRESS=<no value>
###############################################################################
# Username for the open search connection.
# Type: string
# ES_USERNAME=<no value>
###############################################################################
# Password for the open search connection.
# Type: string
# ES_PASSWORD=<no value>
###############################################################################
# How often are indexes incremented. set value in seconds.
# Type: int
# Default: 600
# ES_INDEX_INTERVAL=600
###############################################################################
# ES_ENABLE_RETRY_ON_TIMEOUT=<no value>
###############################################################################
# ES_MAX_RETRIES=<no value>
###############################################################################
###############################################################################
# Corteza server configuration
#
###############################################################################
# IP and port for the corteza server.
# Type: string
# CORTEZA_SERVER_BASE_URL=<no value>
###############################################################################
# corteza server auth url. It is set to '/api' if not explicitly set otherwise.
# API base URL is internally prefixed with baseUrl
# Type: string
# CORTEZA_SERVER_AUTH_URL=/
###############################################################################
# corteza server auth url for discovery api, it is set to '/api/discovery' if not explicitly set otherwise.
# API base URL is internally prefixed with baseUrl
# Type: string
# CORTEZA_SERVER_DISCOVERY_URL=/
###############################################################################
###############################################################################
# Corteza discovery indexer configuration
#
###############################################################################
# Enables indexing for corteza resources.
# Type: bool
# DISCOVERY_INDEXER_ENABLED=<no value>
###############################################################################
# Enables indexing for corteza resources based on client permissions.
# prefix is one of 'public', 'protected' or 'private'".
# Type: string
# DISCOVERY_INDEXER_<PREFIX>_INDEX_CLIENT_KEY=<no value>
# DISCOVERY_INDEXER_<PREFIX>_INDEX_CLIENT_SECRET=<no value>
###############################################################################
###############################################################################
# Corteza discovery searcher configuration
#
###############################################################################
# Enables searching for corteza resources and also enables search endpoints.
# Type: bool
# DISCOVERY_SEARCHER_ENABLED=<no value>
###############################################################################
# Used to restrict corteza resources based on client permissions.
# Type: string
# DISCOVERY_SEARCHER_CLIENT_KEY=<no value>
# DISCOVERY_SEARCHER_CLIENT_SECRET=<no value>
###############################################################################
# It enables access to private indexing.
# Type: string
# DISCOVERY_SEARCHER_JWT_SECRET=<no value>