Hey everyone ! 👋
I installed Flarum on a Synology connected to my network. It runs via an IP address and works perfectly except for one small detail...
When I make CSS changes (admin -> appearance -> Customize styles), when I modify an avatar or upload a file, they don't go to the public folder but to the root of the folder, in a folder with a strange name.
Here my folders :

- B72C5CV : the strange folder with all new minified assets and uploaded files
- flarum : the app with storage, vendor, etc.
- public : the public folder
My flarum/config.php :
<?php return array (
'debug' => false,
'database' =>
array (
'driver' => 'mysql',
'host' => 'localhost',
'port' => 3306,
'database' => '',
'username' => '',
'password' => '',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => 'docu_',
'strict' => false,
'engine' => 'InnoDB',
'prefix_indexes' => true,
),
'url' => 'http://192.168.2.203/public',
'paths' =>
array (
'api' => 'api',
'admin' => 'admin',
),
'headers' =>
array (
'poweredByHeader' => true,
'referrerPolicy' => 'same-origin',
),
);
My flarum/site.php :
return Flarum\Foundation\Site::fromPaths([
'base' => __DIR__,
'public' => __DIR__.'../public',
'storage' => __DIR__.'/storage',
]);
My public/index.php :
$site = require '../flarum/site.php';
In public/assets/ I have the files that were created during the installation.
And in the B72C5CV/public/assets folder, I have the new ones :

Of course, I have never created a "B72C5CV" folder and I don't really see where it comes from... The cache has been cleared. 😶
Thank you in advance for your help. 😃