Installation
Self-hosting your own Feedbacky instance.
Looking for an affordable hosting provider?
We've partnered with Senior Hosting to offer you affordable, high-performance VPS with Minecraft/Discord bot hosting.
Get 10% off using code FEEDBACKY!
Thank you for your interest in using Feedbacky, follow this guide step by step in order to self-host your own instance, we have made this guide beginner friendly specifically for Linux newbies.
Please consider donating to Feedbacky!
Prerequisites
Feedbacky will consume approximately 300MB of memory when running.
At least 200MB of free space is needed for Feedbacky itself.
Operating System
Heads up!
If you plan on using a panel with Feedbacky, please read this FAQ section.
Ubuntu
"Focal" 20.04
✅
Installation guide based on Focal.
"Bionic" 18.04
✅
Debian
"Bullseye" 11
✅
Windows
WSL2
✅
Should work, not tested!
Server 2022
Windows 10
🔧
Working but not officially supported.
Server 2019
Windows 10
🔧
Working but not officially supported.
Mac OS
❓
Unknown and not officially supported.
Docker
Size; ~330MB
Both the Docker Engine and Docker Compose are necessary dependencies for Feedbacky.
Installation Guide
1. Make sure that your system is up to date.
2. Docker requires some dependencies to be installed on your system.
3. Add Docker's official GPG key.
4. Use Docker's stable repository.
5. Update your system.
6. Install Docker Engine and it's related packages.
7. Test that the Docker Engine was successfully installed.
8. Download the Docker Compose repository.
9. Change the permission of downloaded Docker Compose binaries.
10. Test that Docker Compose was successfully installed.
MariaDB
Size; ~200MB
MariaDB is recommended over MySQL as it brings better performance but MySQL will still work with Feedbacky if you already have it installed.
Additional configuration needed, do not skip this part if you already have MariaDB installed.
Installation Guide
1. Update your system.
2. Install the MariaDB server package.
3. Run and go through the security script.
The script will ask you to set a root password, press N to skip it. The root password is already tied to the system on Ubuntu and changing it could result in MariaDB breaking.
Additional Configuration
Docker will treat your container as a remote machine, we need to change the value of bind-address in order to accept non localhost connections.
4. Edit your 50-server.cnf.
5. Change the value of bind-address to 0.0.0.0.
6. Save the file with CTRL + S and exit nano with CTRL + C.
7. Restart MariaDB.
Webserver
A webserver is needed in order to point a domain to your instance. Any will suffice as long as they support reverse proxy.
We have a guide for both Apache and Nginx, choose the one you prefer.
Apache
Size; ~10MB
Apache will require further configuration to enable reverse proxy support.
Installation Guide
1. Update your system.
2. Install the Apache package.
3. Verify that Apache is running.
Nginx
Size; ~2MB
Nginx supports reverse proxy out of the box.
Installation Guide
1. Update your system.
2. Install the Nginx package.
3. Verify that Nginx is running.
Caddy
Coming soon!
Certbot
Size; ~2MB
Certbot is a tool to generate SSL certificates, which we are covering in our Domain Setup guide.
Installation Guide
1. Update your system.
2. Install the certbot package.
3. Install the dependencies for your webserver.
For Apache;
For Nginx;
Terminal Multiplexer
Optional
During the startup process Feedbacky will use your current terminal window and unless you SSH again in your server with a new session, you won't be able to do anything else.
The solution to this is by using a terminal multiplexer, allowing you to run multiple sessions under a single window.
tmux
Size; ~940KB
Screen
Size; ~840KB
Last updated