Hi everyone,
I recently started using Flarum and I'm very happy with the results. Looking at the documentation, I installed it via SSH in a folder outside of public_html and used the following commands:
composer create-project flarum/flarum
chmod -R 775 storage
chmod -R 775 public/assets
find . -type f -name "*.php" -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
Then I created an index.php file in public_html with the following code:
`<?php
$site = require dirname(DIR) . '/folder/site.php';
$server = new Flarum\Http\Server($site);
$server->listen();`
Since I'm new to the platform, I'm wondering: Did I do everything right?
Is there anything I should do that I haven't done yet?
What security actions and extensions do you recommend?