I found another alzhao's post and made changes in /etc/rc.button/BTN_1:

#!/bin/sh
if [ “${ACTION}” == “pressed” ]; then
uci set glconfig.openvpn.enable=‘1’
uci commit glconfig
uci set network.VPN_client=interface
uci set network.VPN_client.proto=‘none’
uci set networ.VPN_client.ifname=‘tun0’
uci commit network
/etc/init.d/startvpn restart
/usr/bin/setvpnfirewall –force
elif [ “${ACTION}” == “released” ]; then
uci set glconfig.openvpn.enable=‘0’
uci commit glconfig
/etc/init.d/startvpn stop
/usr/bin/setvpnfirewall –disable
fi

It works.
Now I will check scheme WiFi->VPN->WiFi with switch button.