-
Notifications
You must be signed in to change notification settings - Fork 19
How to run the AI VPN in Digital Ocean
Veronica Valeros edited this page Oct 27, 2022
·
1 revision
- Create a new droplet in Digital Ocean with the following minimum requirements:
- Ubuntu 20.04LTS
- At least 1GB of memory
- Configure the droplet (assumes access to the droplet)
- Install updates:
apt update && apt dist-upgrade - Install docker and other requirements:
apt install -y docker docker-compose net-tools vim htop tcpdump
- Install updates:
- Clone the AI VPN repository from GitHub:
git clone https://github.com/stratosphereips/AIVPN.git
- Configure the AI VPN:
- Copy and edit the
config.ini:cp config/config.ini.example config/config.inivim config/config.ini
- Copy and edit the
.envWireguard configuration:cp .env_TEMPLATE .envvim .env
- Copy the
docker-compose.yml:cp docker-compose_EXAMPLE.yml docker-compose.yml
- Copy and edit the
- Build the AI VPN modules:
./build.sh
- Run the AI VPN with docker compose:
docker-compose up -d
- Check the logs to see if things are running
tail -f logs/mod_*.log