The issue
I'm constantly seeing a 403 forbidden page.
Flarum information
I'm using nginx as webserver, using the config below:
server {
listen 80;
root /var/www/forum.apexcloud.be/public;
index index.php index.html index.htm index.nginx-debian.html;
server_name forum.apexcloud.be;
include /var/www/forum.apexcloud.be/.nginx.conf;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php8.0-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}