EdgeRouter DDNS setup for CloudFlare
WebUI The config tree in the web UI provides a graphical interface to applying custom settings to EdgeOS, including dynamic DNS. Click the “Config Tree” tab across the top of the page. Drill down inside the tree structure on the left side: service > dns > dynamic > interface Add a new interface entry, using the name of the interface for your… Continue reading EdgeRouter DDNS setup for CloudFlare
WordPress with Nginx reverse proxy
nginx default.conf
Bash script to install zsh on ubuntu
!/bin/sh apt updateapt install zsh curl git -ysh -c “$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)” -ygit clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestionsgit clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlightinggit clone –depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10ksed -i ‘/plugins=(git)/c\plugins=(git zsh-autosuggestions zsh-syntax-highlighting)’ ~/.zshrcsed -i ‘/ZSH_THEME=”robbyrussell”/c\ZSH_THEME=”powerlevel10k/powerlevel10k”‘ ~/.zshrc