AwureAI Deployment

Deploy to your Interserver VPS in 30 minutes

Server Information

Deployment Steps

Server Preparation
Set up your Interserver VPS with required dependencies
Domain Configuration
Point awureai.com to your VPS and configure DNS
SSL & Security
Install SSL certificates and configure security
Database Setup
Configure PostgreSQL for your hosting platform
Application Deployment
Deploy AwureAI and configure auto-deployment

Server Preparation

SSH into your Interserver VPS
Connect to your server to begin setup

1. Connect to your server

ssh root@69.169.102.89

2. Update system packages

apt update && apt upgrade -y

3. Install Docker & Docker Compose

# Install Docker
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh

# Install Docker Compose
curl -L "https://github.com/docker/compose/releases/download/v2.21.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose

4. Install additional tools

apt install -y nginx certbot python3-certbot-nginx git curl wget