1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ergo_ynh.git synced 2024-09-03 18:26:31 +02:00

tweaked defaults

This commit is contained in:
navanchauhan 2022-05-31 16:04:32 -06:00
parent e64833d78b
commit 924aa1c88a

View file

@ -25,7 +25,7 @@
# network configuration # network configuration
network: network:
# name of the network # name of the network
name: ErgoTest name: ErgoYunoHost
# server configuration # server configuration
server: server:
@ -37,8 +37,8 @@ server:
# The standard plaintext port for IRC is 6667. Allowing plaintext over the # The standard plaintext port for IRC is 6667. Allowing plaintext over the
# public Internet poses serious security and privacy issues. Accordingly, # public Internet poses serious security and privacy issues. Accordingly,
# we recommend using plaintext only on local (loopback) interfaces: # we recommend using plaintext only on local (loopback) interfaces:
"127.0.0.1:6667": # (loopback ipv4, localhost-only) "0.0.0.0:__PORT__": # (loopback ipv4)
"[::1]:6667": # (loopback ipv6, localhost-only) "[::]:__PORT__": # (loopback ipv6, localhost-only)
# If you need to serve plaintext on public interfaces, comment out the above # If you need to serve plaintext on public interfaces, comment out the above
# two lines and uncomment the line below (which listens on all interfaces): # two lines and uncomment the line below (which listens on all interfaces):
# ":6667": # ":6667":
@ -772,9 +772,9 @@ datastore:
port: 3306 port: 3306
# if socket-path is set, it will be used instead of host:port # if socket-path is set, it will be used instead of host:port
#socket-path: "/var/run/mysqld/mysqld.sock" #socket-path: "/var/run/mysqld/mysqld.sock"
user: "ergo" user: "__DB_USER__"
password: "hunter2" password: "__DB_PWD__"
history-database: "ergo_history" history-database: "__DB_NAME__"
timeout: 3s timeout: 3s
max-conns: 4 max-conns: 4
# this may be necessary to prevent middleware from closing your connections: # this may be necessary to prevent middleware from closing your connections: