mirror of
https://github.com/opnsense/plugins.git
synced 2026-06-08 16:34:18 -04:00
dns/dnscrypt-proxy: fix logging (#2467)
Fix logging due to Phalcon4 update
This commit is contained in:
parent
b3d6071534
commit
b8dcfba9fa
4 changed files with 10 additions and 5 deletions
|
|
@ -1,6 +1,5 @@
|
|||
PLUGIN_NAME= dnscrypt-proxy
|
||||
PLUGIN_VERSION= 1.8
|
||||
PLUGIN_REVISION= 1
|
||||
PLUGIN_VERSION= 1.9
|
||||
PLUGIN_COMMENT= Flexible DNS proxy supporting DNSCrypt and DoH
|
||||
PLUGIN_DEPENDS= dnscrypt-proxy2
|
||||
PLUGIN_MAINTAINER= m.muenz@gmail.com
|
||||
|
|
|
|||
|
|
@ -5,6 +5,10 @@ such as DNSCrypt v2 and DNS-over-HTTPS.
|
|||
Plugin Changelog
|
||||
================
|
||||
|
||||
1.9
|
||||
|
||||
* Fix logging due to Phalcon4 update
|
||||
|
||||
1.8
|
||||
|
||||
* Remove 8 discontinued DNSBL lists and 2 that are not updated any more
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
<Services>
|
||||
<DNSCrypt-Proxy cssClass="fa fa-lock fa-fw">
|
||||
<Configuration url="/ui/dnscryptproxy/general/index" order="10"/>
|
||||
<GeneralLog VisibleName="Log / General" order="20" url="/ui/diagnostics/log/dnscrypt-proxy/dnscrypt-proxy"/>
|
||||
<QueryLog VisibleName="Log / Queries" order="30" url="/ui/diagnostics/log/dnscrypt-proxy/query"/>
|
||||
<NXLog VisibleName="Log / NX" order="40" url="/ui/diagnostics/log/dnscrypt-proxy/nx"/>
|
||||
<GeneralLog VisibleName="Log / General" order="20" url="/ui/diagnostics/log/dnscryptproxy/dnscrypt-proxy"/>
|
||||
<QueryLog VisibleName="Log / Queries" order="30" url="/ui/diagnostics/log/dnscryptproxy/query"/>
|
||||
<NXLog VisibleName="Log / NX" order="40" url="/ui/diagnostics/log/dnscryptproxy/nx"/>
|
||||
</DNSCrypt-Proxy>
|
||||
</Services>
|
||||
</menu>
|
||||
|
|
|
|||
|
|
@ -2,3 +2,5 @@
|
|||
|
||||
mkdir -p /var/log/dnscrypt-proxy
|
||||
chown -R _dnscrypt-proxy:_dnscrypt-proxy /var/log/dnscrypt-proxy
|
||||
(cd /var/log && ln -s dnscrypt-proxy dnscryptproxy)
|
||||
chown -R _dnscrypt-proxy:_dnscrypt-proxy /var/log/dnscryptproxy
|
||||
|
|
|
|||
Loading…
Reference in a new issue