aboutsummaryrefslogtreecommitdiffstats
path: root/roles/znc/templates/znc.conf.j2
diff options
context:
space:
mode:
Diffstat (limited to 'roles/znc/templates/znc.conf.j2')
-rw-r--r--roles/znc/templates/znc.conf.j212
1 files changed, 8 insertions, 4 deletions
diff --git a/roles/znc/templates/znc.conf.j2 b/roles/znc/templates/znc.conf.j2
index 6b96611..2380ad4 100644
--- a/roles/znc/templates/znc.conf.j2
+++ b/roles/znc/templates/znc.conf.j2
@@ -22,6 +22,8 @@ SSLCertFile = {{ znc.data_dir }}/ssl.crt
SSLKeyFile = {{ znc.data_dir }}/ssl.key
SSLDHParamFile = /usr/local/etc/ssl/dhparam4096.pem
+LoadModule = adminlog
+
// NOTE: DragonFly BSD doesn't allow using "IPV6_V6ONLY=0" to bind on
// both IPv4 & IPv6, therefore bind them separately.
{% for listener in ["ipv4", "ipv6"] %}
@@ -89,10 +91,12 @@ SSLDHParamFile = /usr/local/etc/ssl/dhparam4096.pem
// Auth with NickServ
LoadModule = nickserv
- Server = {{ net.server }} {% if net.ssl|default(false) %}+{% endif%}{{ net.port }} {{ net.password|default("") }}
- {% if net.fingerprint is defined -%}
- TrustedServerFingerprint = {{ net.fingerprint }}
- {% endif %}
+ {% for server in net.servers -%}
+ Server = {{ server.name }} {% if server.ssl|default(false) %}+{% endif%}{{ server.port }} {{ server.password|default("") }}
+ {% endfor %}
+
+ TrustPKI = true
+ TrustAllCerts = true
{% for ch in net.channels -%}
<Chan #{{ ch | regex_replace('^#', '') }}>