14 lines
1 KiB
Meson
14 lines
1 KiB
Meson
# vi:set ft=meson ts=4 sw=2 noet noai:
|
|
|
|
option('loglevel', type : 'integer', min : 0, max : 5, value : 3)
|
|
option('puid_length', type : 'integer', min : 1, max : 16, value : 3)
|
|
option('max_size', type : 'integer', min : 1024, max : 17179869184, value : 67108864, description : 'bytes')
|
|
option('path', type : 'string', value : '/var/tmp', description : 'paste output path')
|
|
option('min_age', type : 'integer', min : 1, max: 365, value : 1, description : 'days')
|
|
option('max_age', type : 'integer', min : 1, max: 365, value : 365, description : 'days')
|
|
option('scheme', type : 'combo', choices : ['http://', 'https://'], value : 'https://')
|
|
option('domain', type : 'string', value : 'example.org')
|
|
option('xattr_sunset', type : 'string', value: 'user.sp.sunset')
|
|
option('xattr_uin', type : 'string', value: 'user.sp.puin')
|
|
option('addrs_pasted', type : 'array', value : ['[::]:9999'], description : 'listening adress:port pairs')
|
|
option('addrs_erased', type : 'array', value : ['[::]:10000'], description : 'listening adress:port pairs')
|