Deployment Guides
Choose your platform for step-by-step deployment instructions.
AWS Marketplace
Subscribe on AWS Marketplace
- Visit the SFTProo listing on AWS Marketplace
- Click Continue to Subscribe, then Continue to Configuration
- Select your preferred region and click Continue to Launch
- Choose Launch through EC2 and select your instance type (recommended:
t3.mediumor larger)
Launch via CLI
aws ec2 run-instances \
--image-id ami-xxxxxxxxxxxxxxxxx \
--instance-type t3.medium \
--key-name my-key \
--security-group-ids sg-xxxxxxxx \
--subnet-id subnet-xxxxxxxx \
--tag-specifications 'ResourceType=instance,Tags=[{Key=Name,Value=sftproo-01}]'
Security Group
Ensure your security group allows:
- TCP 22 — SSH (management)
- TCP 2222 — SFTP listener
- TCP 443 — Web management dashboard (HTTPS)
Access the Dashboard
Open https://<PUBLIC_IP> in your browser to access the SFTProo web dashboard. Create your admin account on first login.
Billing
SFTProo is billed through your AWS account. No separate contracts or invoices — usage appears on your standard AWS bill.
Documentation
Full product documentation is available at sftproo.com.
Azure Marketplace
Subscribe on Azure Marketplace
- Visit the SFTProo listing on Azure Marketplace
- Click Get It Now, then Create
- Select your resource group, region, and VM size (recommended:
Standard_D2s_v3or larger) - Configure networking and click Review + Create
Launch via CLI
az vm create \
--resource-group myResourceGroup \
--name sftproo-01 \
--image cloudsoe:sftproo:sftproo:latest \
--size Standard_D2s_v3 \
--admin-username azureuser \
--generate-ssh-keys
Open Required Ports
az vm open-port --port 2222 --resource-group myResourceGroup --name sftproo-01
az vm open-port --port 443 --resource-group myResourceGroup --name sftproo-01 --priority 1100
Access the Dashboard
Open https://<PUBLIC_IP> in your browser to access the SFTProo web dashboard. Create your admin account on first login.
Billing
SFTProo is billed through your Azure account. Charges appear on your consolidated Azure invoice — no separate vendor contracts.
Documentation
Full product documentation is available at sftproo.com.