restore default plaintext listener

This commit is contained in:
Shivaram Lingamneni 2019-07-12 09:53:58 -04:00
parent 68e9a48860
commit 3fa1c526a6
1 changed files with 8 additions and 8 deletions

View File

@ -12,20 +12,20 @@ server:
# addresses to listen on # addresses to listen on
listeners: listeners:
# The standard plaintext port for IRC is 6667. This will listen on all interfaces:
":6667":
# The standard SSL/TLS port for IRC is 6697. This will listen on all interfaces: # The standard SSL/TLS port for IRC is 6697. This will listen on all interfaces:
":6697": ":6697":
tls: tls:
key: tls.key key: tls.key
cert: tls.crt cert: tls.crt
# The standard plaintext port for IRC is 6667. Since using plaintext over # Since using plaintext over the public Internet poses security and privacy issues,
# the public Internet poses security and privacy issues, we recommend using # you may wish to use plaintext only on local interfaces. To do so, comment out
# plaintext only on local interfaces: # the `":6667":` line, then uncomment these two lines:
"127.0.0.1:6667": # (loopback ipv4, localhost-only) # "127.0.0.1:6667": # (loopback ipv4, localhost-only)
"[::1]:6667": # (loopback ipv6, localhost-only) # "[::1]:6667": # (loopback ipv6, localhost-only)
# If you need to use plaintext on non-local interfaces, comment out the above
# two lines, then uncomment the following line:
# ":6667":
# Example of a Unix domain socket for proxying: # Example of a Unix domain socket for proxying:
# "/tmp/oragono_sock": # "/tmp/oragono_sock":