Add yourself to the docker
group to be able to run containers as non-root (see Post-install steps for Linux).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sources | |
# https://openwrt.org/docs/guide-user/network/wifi/guestwifi/guest-wlan | |
# https://openwrt.org/docs/guide-user/network/wifi/guestwifi/extras | |
WIFI_DEV="radio0" | |
WIFI_PASSWORD="guest" | |
# Configure network | |
uci -q delete network.guest | |
uci set network.guest="interface" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
SINGLE_DOMAIN=${SINGLE_DOMAIN:-my.domain.org} | |
opkg install ca-certificates ca-bundle curl | |
hash acme.sh || ( curl https://get.acme.sh | sh && \ | |
ln -s /root/.acme/acme.sh /usr/bin/ ) | |
acme.sh --issue -d ${SINGLE_DOMAIN} --dns --force |
OlderNewer