Browse Source

restore default plaintext listener

tags/v1.2.0-rc1
Shivaram Lingamneni 5 years ago
parent
commit
3fa1c526a6
1 changed files with 8 additions and 8 deletions
  1. 8
    8
      oragono.yaml

+ 8
- 8
oragono.yaml View File

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

Loading…
Cancel
Save