13 lines
271 B
Smarty
13 lines
271 B
Smarty
|
### Go template test ###
|
||
|
{{ if .Vars.AuthEnabled }}
|
||
|
auth_enabled: true
|
||
|
{{ else }}
|
||
|
auth_enabled: false
|
||
|
{{ end }}
|
||
|
|
||
|
server:
|
||
|
http_listen_port: {{ .Vars.HTTPPort }}
|
||
|
grpc_listen_port: {{ .Vars.GRPCPort }}
|
||
|
log_level: {{ .Vars.LogLevel }}
|
||
|
|
||
|
### End Go template test ###
|