1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gemserv_ynh.git synced 2024-09-03 18:36:27 +02:00

Update server.toml according to upstream (v0.5.0)

cecc6f5793
This commit is contained in:
OniriCorpe 2022-05-07 00:19:03 +02:00 committed by GitHub
parent 817389754e
commit 19ba9f5c9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,12 @@
port = 1965 # interface accepts multiple interface/port combinations. However, due to the
# use "::" for ipv6 and ipv4 or "0.0.0.0" for ipv4 only # dual stack nature of linux if you specify "[::]:1965" linux will also listen
host = "::" # on "0.0.0.0:1965" so if you manually specify both it will fail.
# interface = [ "0.0.0.0:1965, "[::]:1965" ]
interface = [ "[::]:1965" ]
# port and host have been deprecated in favor of interface but will still work
# for now.
# port = 1965
# host = "::"
# log is optional and server wide. It defaults to info if not set. Other levels # log is optional and server wide. It defaults to info if not set. Other levels
# are error, warn, and info. If error is set it will only show error. If warn # are error, warn, and info. If error is set it will only show error. If warn
# is set it will show error and warn. Info shows all three. # is set it will show error and warn. Info shows all three.