-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.env
61 lines (51 loc) · 2.12 KB
/
Makefile.env
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
# Main Options
#- Addr and port which server listens at (srv_listen not used) (string) [:8080]
LISTEN ?= :8080
#- Addr and port which GRPC pub server listens at (string) [:8081]
LISTEN_GRPC ?= :8081
#- Static files root directory (string) [-]
ROOT ?=
#- Generate and print config definition in given format and exit (default: '', means skip) (,json,md,mk) [-]
CONFIG_GEN ?=
#- Dump config dest filename (string) [-]
CONFIG_DUMP ?=
# Logging Options
#- Show debug info (bool) [false]
LOG_DEBUG ?=
#- Output format (default: '', means use text if DEBUG) (,text,json) [-]
LOG_FORMAT ?=
#- Time format for text output (string) [2006-01-02 15:04:05.000]
LOG_TIME_FORMAT ?= 2006-01-02 15:04:05.000
#- Log destination (default: '', means STDERR) (string) [-]
LOG_DEST ?=
# Auth Service Options
#- Authorization Server type (gitea|mmost) (gitea,mmost) [gitea]
AS_TYPE ?= gitea
#- Do not redirect with http.StatusUnauthorized, process it (bool) [false]
AS_DO401 ?=
#- Authorization Server host (string) [http://gitea:8080]
AS_HOST ?= http://gitea:8080
#- Authorization Server team which members has access to resource (string) [dcape]
AS_TEAM ?= dcape
#- Authorization Server Client ID (string) [-]
AS_CLIENT_ID ?=
#- Authorization Server Client key (string) [-]
AS_CLIENT_KEY ?=
#- Cookie sign key (32 or 64 bytes) (string) [-]
AS_COOKIE_SIGN_KEY ?=
#- Cookie crypt key (16, 24, or 32 bytes) (string) [-]
AS_COOKIE_CRYPT_KEY ?=
#- HTTP Response Header for username (string) [X-Username]
AS_USER_HEADER ?= X-Username
# Server Options
#- Addr and port which server listens at (string) [:8080]
SRV_LISTEN ?= :8080
#- HTTP Request Header for remote IP (string) [X-Real-IP]
SRV_IP_HEADER ?= X-Real-IP
#- HTTP Request Header for username (string) [X-Username]
SRV_USER_HEADER ?= X-Username
# HTTPS Options
#- CertFile for serving HTTPS instead HTTP (string) [-]
SRV_TLS_CERT ?=
#- KeyFile for serving HTTPS instead HTTP (string) [-]
SRV_TLS_KEY ?=