This service is designed to support custom domains for SaaS products.
Here are the steps you need to take to run this docker image.
Set the proper environment variable for your desired installation.
Here is a sample .env
file.
SAAS_UPSTREAM=example.com:443
API_KEY=0df05a6c-d4c6-4ee4-a55d-de1409e82cee
docker volume create https_data
docker volume create https_domains
Create a docker-compose.yml
file.
version: "3.7"
services:
https:
image: sireto/custom-domain:latest
ports:
- "80:80"
- "443:443"
- "443:443/udp"
- "9000:9000"
restart: unless-stopped
networks:
- frontend
env_file:
- .env
volumes:
- https_domains:/app/domains
- https_data:/root/.local/share
volumes:
https_data:
external: true
https_domains:
external: true
networks:
frontend:
Now you can run the compose file:
docker-compose up -d
This will run a webserver and the management APIs.
The OpenAPI docs for the management APIs will be available on port 9000.
So, if you deployed host is localhost, the APIs are available at:
http://localhost:9000/docs
Your SaaS customers need to add a DNS Record to point their domain to your deployed server. This can be done in one of the two ways.
Assuming your deployed server has IP address: XX.XX.XX.XX
.
Then your customers will have to set the DNS Record:
XX.XX.XX.XX
Assuming your deployed server has a DNS name: custom.example.com
Then, your customer should set the following DNS records:
custom.example.com
The full source code is available on GitHub
https://github.com/sireto/custom-domain
Don't want to host it yourself? No problem! We do it for you. Here's what you get on the paid version:
Price: $20 / month
Contact: info@sireto.com