mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 21:24:31 +04:00
Merge pull request #15855 from JamesVorder/yggdrasil/https
yggdrasil: allow HTTPS connections
This commit is contained in:
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=yggdrasil
|
PKG_NAME:=yggdrasil
|
||||||
PKG_VERSION:=0.3.16
|
PKG_VERSION:=0.3.16
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://codeload.github.com/yggdrasil-network/yggdrasil-go/tar.gz/v$(PKG_VERSION)?
|
PKG_SOURCE_URL:=https://codeload.github.com/yggdrasil-network/yggdrasil-go/tar.gz/v$(PKG_VERSION)?
|
||||||
|
|||||||
@@ -89,6 +89,17 @@ EOF
|
|||||||
set firewall.@rule[-1].target=ACCEPT
|
set firewall.@rule[-1].target=ACCEPT
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
# allow LuCI access with SSL from yggdrasil zone, needs to be explicitly enabled
|
||||||
|
uci -q batch <<-EOF >/dev/null
|
||||||
|
add firewall rule
|
||||||
|
set firewall.@rule[-1].enabled=0
|
||||||
|
set firewall.@rule[-1].name='Allow-HTTPS-yggdrasil'
|
||||||
|
set firewall.@rule[-1].src=yggdrasil
|
||||||
|
set firewall.@rule[-1].proto=tcp
|
||||||
|
set firewall.@rule[-1].dest_port=443
|
||||||
|
set firewall.@rule[-1].target=ACCEPT
|
||||||
|
EOF
|
||||||
|
|
||||||
uci commit firewall
|
uci commit firewall
|
||||||
uci commit network
|
uci commit network
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user