Explorar el Código

modify default IRC configs for inbound and external_addr so they are not 127.0.0.1

narodnik hace 4 años
padre
commit
6a88fad0e2
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. 3 2
      bin/ircd/ircd_config.toml

+ 3 - 2
bin/ircd/ircd_config.toml

@@ -17,13 +17,14 @@ autojoin = ["#dev", "#memes", "#philosophy", "#markets", "#math", "#random"]
 ## P2P net settings
 [net]
 ## P2P accept address
-#inbound="tls://127.0.0.1:11002" 
+#inbound="tls://0.0.0.0:11002" 
 
 ## Connection slots
 outbound_connections=5
 
 ## P2P external address
-#external_addr="tls://127.0.0.1:11002"
+## Put your IP or hostname here
+#external_addr="tls://XXX.XXX.XXX.XXX:11002"
 
 ## Peers to connect to
 #peers=["tls://127.0.0.1:11003"]