Laravel.io
/*
    |--------------------------------------------------------------------------
    | Multi-User Mode
    |--------------------------------------------------------------------------
    */

    // If true, private folders will be created for each signed-in user.
    'allow_multi_user' => false,
    // If true, share folder will be created when allow_multi_user is true.
    'allow_share_folder' => false,

    // The database column to identify a user. Make sure the value is unique.
    // Ex: When set to 'id', the private folder of user will be named as the user id.
    'user_field' => 'id',

    /*
    |--------------------------------------------------------------------------
    | Working Directory
    |--------------------------------------------------------------------------
    */

    // Which folder to store files in project, fill in 'public', 'resources', 'storage' and so on.
    // You should create routes to serve images if it is not set to public.
    'base_directory' => 'public',

    'images_folder_name' => 'uploads',
    'files_folder_name'  => 'uploads',

    'shared_folder_name' => '',
    'thumb_folder_name'  => 'thumbs',

Please note that all pasted data is publicly available.