This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################## Network And HTTP ############################### | |
# Elasticsearch, by default, binds itself to the 0.0.0.0 address, and listens | |
# on port [9200-9300] for HTTP traffic and on port [9300-9400] for node-to-node | |
# communication. (the range means that if the port is busy, it will automatically | |
# try the next port). | |
# Set the bind address specifically (IPv4 or IPv6): | |
# | |
# network.bind_host: 192.168.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace eval moin { | |
bind pubm -|- * moin::moin | |
} | |
proc moin::moin { nick host handle chan text } { | |
if {[regexp -nocase -- {(^moin|^mornin)} $text]} { | |
putserv "PRIVMSG $chan :$nick moin" | |
} | |
if {[regexp -nocase -- {(^:)} $text]} { |