Installation

Before installing Fyno Connect, you will need to have the following:

  • A Fyno Cloud account, preferably with a few templates, routes and notification events created and ready for testing.
  • A VM (Virtual Machine), where this instance of Fyno Connect will be set up. This can be anything from AWS EC2 to Azure Compute Services, whichever best suits your set-up and needs. Please install the latest version of docker in this VM.
  • A CNAME or A record pointing your Fyno Connect sub-domain (example: connect.example.com) to this VM.
  • Allow public access to ports 80 and 443 of this VM for automatic SSL certificate creation. This can be disabled later.

Setting up and installing Fyno Connect

1

Install Docker and Docker-Compose

In your VM, install the latest version of docker and docker-compose.

2

Download and Extract Fyno Connect Files

Download the Fyno Connect zip file (we will share this with you) in the VM and extract the files.

3

Configure Environment Variables in .env File

Edit the .env file in the folder where you have extracted the zip file. In this file add your Fyno Workspace ID and API Key details. You can fetch these values from Fyno Cloud API Keys page.

1FYNO_WSID=<your_fyno_workspace_id>
2FYNO_API_KEY=<your_fyno_api_key>
4

Edit the Caddyfile for SSL and Domain Configuration

Edit the Caddyfile located in the docker-data folder. Add your email ID, which will be used to create your SSL certificate, and the address of the domain you would use for Fyno Connect.

1{
2 email <YOUR_EMAIL>
3}
4
5connect.example.com {
6 handle_path /api/app/* {
7 reverse_proxy connect-frontend:4005
8 }
9 handle {
10 reverse_proxy connect-frontend:3000
11 }
12}
5

Start Fyno Connect with the start.sh Script

Once done, run the start.sh shell script to startup Fyno Connect.

1./start.sh
2
3OR
4
5sh start.sh
6

Access Fyno Connect via Sub-Domain

If the setup is successful, you will be able to access Fyno Connect via the sub-domain (example: connect.example.com) you used above.

7

Restrict Public Access to Ports 80 and 443

You may now restrict public access for ports 80 and 443 to your Fyno Connect domain.

`delete.sh` and `update.sh` works too!
For when you want to remove Fyno Connect or update it!