Run your own analytics with Umami, Fly.io and Neon
Self host your Umami analytics on Fly.io and powered by Neon Postgres
In this guide, you will learn how to self host your Umami analytics instance on Fly.io and powered by Neon Postgres as the serverless database.
Prerequisites
To follow along and deploy the application in this guide, you will need the following:
- flyctl – A command-line utility that lets you work with the Fly.io platform. You will also need a fly.io account.
- A Neon account – The self-hosted Umami analytics instance will connect to a Neon serverless Postgres database 🚀
Steps
- What is Umami?
- Provisioning a Postgres database using Neon
- Set up an Umami instance for Fly.io
- Configure Neon Postgres as serverless database for self-hosted Umami analytics
- Deploy to Fly.io
What is Umami?
Umami is a simple, fast, privacy-focused, open-source analytics solution. Umami is a better alternative to Google Analytics because it gives you total control of your data and does not violate the privacy of your users. [1]
Provisioning a Postgres Database using Neon
Using a serverless Postgres database powered by Neon allows you to scale down to zero when the database is not being used, which saves on compute costs. .
To get started, go to the Neon Console and enter a name for your project.
You will be presented with a dialog that provides a connection string of your database. Click on the Pooled connection option and the connecting string automatically changes to a pooled connection string.
All Neon connection strings have the following format:
user
is the database user.password
is the database user’s password.endpoint_hostname
is the host with neon.tech as the top level domain (TLD).port
is the Neon port number. The default port number is 5432.dbname
is the name of the database. “neondb” is the default database created with each Neon project if you don't specify your own database name.?sslmode=require
is an optional query parameter that enforces the SSL mode for better security when connecting to the Postgres instance.
Please save the connection string somewhere safe. Later, you will use it to configure the DATABASE_URL
variable.
Setup Umami analytics instance for Fly.io
To self host your Umami analytics instance, you'll use Umami's pre-built Docker container for Postgres. This will allow you to self host an Umami analytics instance on Fly.io with a single fly.toml
file.
In your terminal window, execute the following commands to create a new directory and cd
to it:
In the directory self-host-umami-neon
, create a file named fly.toml
with the following content:
In the build
property named image
, you will see that it's pointing to the latest Postgres compatible pre-built Docker image of Umami.
Next, you need to create an app on Fly.io using the configuration present in fly.toml
file. In your terminal window, execute the following command to launch a Fly.io app:
When prompted by the CLI to allow copying of the existing configuration into a new app, answer with a y
:
Optional: When asked if you want to tweak the default settings, answer with a y
:
flyctl will then automatically take you to a web page, which allows you to visually edit the default settings. For example, you can change the app name to self-host-umami-neon
, and change the region to say ams
.
Click on Confirm Settings
to set this configuration, and go back to your terminal window. In your terminal window, you should now see output similar to the following:
Once the deployment is ready, you are left with just one step — to set the DATABASE_URL
environment variable that we obtained in the previous section. We'll do that in the next section.
Configure Neon Postgres as serverless database for self-hosted Umami analytics
In your Fly.io Dashboard > Apps, click on your app name, and you will be taken to the overview of your app on Fly.io.
Click on Secrets
in the left sidebar, and then click on New Secret
on the top right corner to start creating an environment variable for your app.
In the modal, set the name of the secret as DATABASE_URL
, and set the Secret
value to be the one that we obtained in the previous section. Click Set secret to save the environment variable.
Great! With that done, you have succesfully ensured that each deployment of your app on Fly.io will have the database URL pointing to the Neon Postgres instance. Let's trigger a deploy to see it all in action.
Deploy To Fly.io
You can now deploy your app to Fly by running the following command:
Once deployed, you will be able to log into your self hosted Umami analytics instance with the default credentials, i.e.; admin as the username & umami as the password. You will then be able to create new websites and analyze the traffic to those sites.
Summary
In this guide, you learned how to run your own Umami analytics instance for analytics with Fly.io, powered by Neon postgres as your database.
Need help?
Join our Discord Server to ask questions or see what others are doing with Neon. Users on paid plans can open a support ticket from the console. For more detail, see Getting Support.