The is also Codeberg
The is also Codeberg


deleted by creator


Why are you using that?
location ~ /\.ht {
deny all;
}
You’re denying the access to your root, which is the public/ folder and has the file .htaccess that has
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
This file handles the income requests and send to the front controller.


I’m not sure, but looks like you’re denying all .htaccess files. Laravel depends on .htaccess to make things work properly
Take a look on Laravel docs - Deployment to make sure your configs are right


Im using Matomo, however my use case is different from yours. I run a business and need more complete data, which Matomo gives me
I also had in mind Plausible, cause it’s less resource demandant, but at the end I have chosen Matomo
Oh! Is it?
Well, living and learning haha