Skip to content

Commit

Permalink
Version bump for rebuild
Browse files Browse the repository at this point in the history
fix local_unbound dns resolution with missing parameters for access control
  • Loading branch information
bretton committed Jul 27, 2023
1 parent 56f37e4 commit d2b7471
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions jitsi-meet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Fix syslog-ng problems for 4.2 version, remove stats_freq option
* Add local unbound and consul DNS services
* Update README with consul DNS info
* fix local_unbound dns resolution with missing parameters for access control

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ stub-zone:
stub-addr: 127.0.0.1@8600
' >/etc/unbound/conf.d/consul.conf

# we need to enable this to allow queries
# only seems to work in conf.d dir
echo 'server:
interface: 0.0.0.0
access-control: 10.0.0.0/8 allow
access-control: 127.0.0.0/8 allow
' >/etc/unbound/conf.d/server.conf

service local_unbound enable || true
sysrc local_unbound_forwarders="${DNSFORWARDERS:-none}" || true
service local_unbound setup || true
Expand Down
2 changes: 1 addition & 1 deletion jitsi-meet/jitsi-meet.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[manifest]
potname="jitsi-meet"
author = "Stephan Lichtenauer, Bretton Vine, Michael Gmelin"
version="0.10.3"
version="0.10.4"
origin="freebsd"
runs_in_nomad="false"

0 comments on commit d2b7471

Please sign in to comment.