I am currently looking at this support article [customizing paths](https://docs.flarum.org/install/#customizing-paths
I am able to update all of the files except I'm not sure what to do here where it says:
You will also need to edit the index.php file and change the following line:
$site = require './site.php';
What do I need to change this to?
Also, the article then says:
Edit the site.php and update the paths in the following lines to reflect your new directory structure:
'base' => __DIR__,
'public' => __DIR__,
'storage' => __DIR__.'/storage',
What do I need to change here?
Ultimately, just trying to change the /public to my own subdirectory.
I basically just want to use mysite.com/community instead of mysite.com/community/public
Update: I've tried following all of the instructions. I updated ./site.php to /site.php
Changed 'public' => DIR/'public' to DIR
Either the site breaks or just doesn't work. I've updated all of the files.
I'm using NGINX but for whatever reason, I can't setup any redirects on the server level or inside the .htaccess file.
I've seen a million of these post that are similar but cant seem to get any of the answers to work.