30 lines
914 B
YAML
30 lines
914 B
YAML
######################################################################
|
|
# Version
|
|
#
|
|
# version specifies the version of this configuration file schema, not
|
|
# the fasten binary. There is only 1 version available at the moment
|
|
version: 1
|
|
|
|
web:
|
|
jwt:
|
|
# used to encrypt/validate JWT session key (used for authentication)
|
|
encryptionkey: 'changethissupersecretkey'
|
|
listen:
|
|
port: 9090
|
|
host: 0.0.0.0
|
|
|
|
# if you're using a reverse proxy like apache/nginx, you can override this value to serve fasten on a subpath.
|
|
# eg. http://example.com/fasten/* vs http://example.com:8080
|
|
# basepath: `/fasten`
|
|
# leave empty unless behind a path prefixed proxy
|
|
basepath: ''
|
|
src:
|
|
# the location on the filesystem where webapp javascript + css is located
|
|
frontend:
|
|
# path: /opt/fasten/web
|
|
path: ./dist
|
|
|
|
log:
|
|
file: '' #absolute or relative paths allowed, eg. web.log
|
|
level: INFO
|