1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/listmonk_ynh.git synced 2024-09-03 19:36:15 +02:00

Update config.toml

This commit is contained in:
ericgaspar 2022-03-28 14:54:46 +02:00
parent 4ae3180658
commit f25d2d36dd
No known key found for this signature in database
GPG key ID: 574F281483054D44

View file

@ -1,5 +1,14 @@
[app] [app]
# Interface and port where the app will run its webserver. The default value
# of localhost will only listen to connections from the current machine. To
# listen on all interfaces use '0.0.0.0'. To listen on the default web address
# port, use port 80 (this will require running with elevated permissions).
address = "127.0.0.1:__PORT__" address = "127.0.0.1:__PORT__"
# BasicAuth authentication for the admin dashboard. This will eventually
# be replaced with a better multi-user, role-based authentication system.
# IMPORTANT: Leave both values empty to disable authentication on admin
# only where an external authentication is already setup.
admin_username = "__ADMIN__" admin_username = "__ADMIN__"
admin_password = "__PASSWORD__" admin_password = "__PASSWORD__"