Initial Setup
Downloading the necessary files for Feedbacky itself, setting up the database and firewall.
Last updated
Downloading the necessary files for Feedbacky itself, setting up the database and firewall.
Last updated
1. Create a new directory named "feedbacky" in the /etc
directory and access it.
2. Run the command below to download the necessary files.
.env
is the file containing the Feedbacky variable in which you can configure to your needs.
docker-compose.yml
is the instruction file for Docker.
1. Start the SQL shell.
2. Create a new user for Feedbacky.
As stated previously, we won't be able to create a localhost
user, instead we'll use the %
wildcard instead.
3. Create a new table for Feedbacky.
4. Grant all privileges to your MySQL user.
5. Flush the privileges.
Flush will reload the privileges without having the need to restart the MariaDB daemon.
6. Exit the SQL shell.
Uncomplicated Firewall (UFW) is the default Firewall on Ubuntu 20.04, it is disabled by default.
1. Enable Uncomplicated Firewall (UFW).
2. Forward the Feedbacky server port.
If you plan on using a different port, make sure that you change the value of the SERVER_APP_PORT
variable when configuring!
Make sure that you also create a port forwarding rule in your router settings page. If you are using a Virtual Private Server (VPS) check with your provider.
{MYSQL_USERNAME}
The username of your choice.
{MYSQL_PASSWORD}
The password of your choice.