├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── main.py ├── requirements.txt ├── scripts ├── change_passwd.sh ├── change_port.sh ├── setup.sh ├── ssl.sh ├── uninstall.sh └── update.sh ├── src ├── config.py ├── forms.py ├── logs.py ├── vpn_bot.py └── wg_stats.py ├── static ├── css │ └── main.css ├── favicon.ico └── js │ ├── base.js │ ├── login_page.js │ ├── main_page.js │ ├── ovpn_history.js │ ├── ovpn_page.js │ ├── ovpn_stats.js │ └── wg_page.js └── templates ├── base.html ├── index.html ├── login.html ├── ovpn.html ├── ovpn_history.html ├── ovpn_stats.html └── wg.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *venv 2 | /logs 3 | /.pylintrc 4 | __pycache__ 5 | *.db 6 | test.py 7 | .env -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/change_passwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/scripts/change_passwd.sh -------------------------------------------------------------------------------- /scripts/change_port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/scripts/change_port.sh -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /scripts/ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/scripts/ssl.sh -------------------------------------------------------------------------------- /scripts/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/scripts/uninstall.sh -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/scripts/update.sh -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/src/config.py -------------------------------------------------------------------------------- /src/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/src/forms.py -------------------------------------------------------------------------------- /src/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/src/logs.py -------------------------------------------------------------------------------- /src/vpn_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/src/vpn_bot.py -------------------------------------------------------------------------------- /src/wg_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/src/wg_stats.py -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/static/js/base.js -------------------------------------------------------------------------------- /static/js/login_page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/static/js/login_page.js -------------------------------------------------------------------------------- /static/js/main_page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/static/js/main_page.js -------------------------------------------------------------------------------- /static/js/ovpn_history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/static/js/ovpn_history.js -------------------------------------------------------------------------------- /static/js/ovpn_page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/static/js/ovpn_page.js -------------------------------------------------------------------------------- /static/js/ovpn_stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/static/js/ovpn_stats.js -------------------------------------------------------------------------------- /static/js/wg_page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/static/js/wg_page.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/ovpn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/templates/ovpn.html -------------------------------------------------------------------------------- /templates/ovpn_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/templates/ovpn_history.html -------------------------------------------------------------------------------- /templates/ovpn_stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/templates/ovpn_stats.html -------------------------------------------------------------------------------- /templates/wg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMurmabis/StatusOpenVPN/HEAD/templates/wg.html --------------------------------------------------------------------------------