Skip to content

Commit

Permalink
Merge branch 'master' into pnpm-file-version-update
Browse files Browse the repository at this point in the history
  • Loading branch information
vbagirov authored Sep 25, 2024
2 parents ace48c8 + fd5cc42 commit 48f6913
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion docs/adguard-vpn-for-ios/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sidebar_position: 2

## System requirements

AdGuard VPN can only be installed on devices with **iOS 14.2 and iPadOS 14.2 or later**.
AdGuard VPN can only be installed on devices with **iOS 15.4 and iPadOS 15.4 or later**.

### If AdGuard VPN has been removed from the App Store

Expand Down
26 changes: 13 additions & 13 deletions docs/adguard-vpn-for-linux/setting-up-on-a-router/asuswrt-merlin.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,19 +242,19 @@ This step configures firewall rules on an Asuswrt-Merlin router to route traffic
#!/bin/sh
if [ "$2" = "connected" ]; then
export SSL_CERT_FILE=/opt/etc/ssl/certs/ca-certificates.crt
export HOME=/opt/home/admin
modprobe tun
/opt/adguardvpn_cli/adguardvpn-cli connect &
for ipt in iptables ip6tables; do
$ipt -D FORWARD -j ADGUARD_FORWARD || true
$ipt -F ADGUARD_FORWARD || true
$ipt -X ADGUARD_FORWARD || true
$ipt -N ADGUARD_FORWARD
$ipt -I FORWARD -j ADGUARD_FORWARD
$ipt -A ADGUARD_FORWARD -i br0 -o tun0 -j ACCEPT
done
exit 0
export SSL_CERT_FILE=/opt/etc/ssl/certs/ca-certificates.crt
export HOME=/opt/home/admin
modprobe tun
/opt/adguardvpn_cli/adguardvpn-cli connect &
for ipt in iptables ip6tables; do
$ipt -D FORWARD -j ADGUARD_FORWARD || true
$ipt -F ADGUARD_FORWARD || true
$ipt -X ADGUARD_FORWARD || true
$ipt -N ADGUARD_FORWARD
$ipt -I FORWARD -j ADGUARD_FORWARD
$ipt -A ADGUARD_FORWARD -i br0 -o tun0 -j ACCEPT
done
exit 0
fi
EOF
```
Expand Down
1 change: 0 additions & 1 deletion src/css/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ html[data-theme='dark'] .docusaurus-highlight-code-line {
.container img {
width: 100%;
max-width: 800px;
margin: 0 auto;
display: block;
}

Expand Down

0 comments on commit 48f6913

Please sign in to comment.