1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/minio_ynh.git synced 2024-09-03 19:46:18 +02:00

Update docs and permission

This commit is contained in:
Limezy 2022-03-25 23:54:22 +07:00
parent 87142b0953
commit 44f651ea4a
3 changed files with 12 additions and 17 deletions

View file

@ -1,9 +1,7 @@
Some long and extensive description of what the app is and does, lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. MinIO offers high-performance, S3 compatible object storage.
### Features ### Features
- Ut enim ad minim veniam, quis nostrud exercitation ullamco ; - S3 compatible object storage server for your Yunohost instance
- Laboris nisi ut aliquip ex ea commodo consequat ; - Built-in minio client so that other apps can interact with the api and create or manage buckets
- Duis aute irure dolor in reprehenderit in voluptate ; - (Optional) built-in MinIO web console to manage your buckets
- Velit esse cillum dolore eu fugiat nulla pariatur ;
- Excepteur sint occaecat cupidatat non proident, sunt in culpa."

View file

@ -1,12 +1,9 @@
* Any known limitations, constrains or stuff not working, such as (but not limited to): * Known limitations
* requiring a full dedicated domain ? * Requires a full dedicated domain (two if you need the console)
* architectures not supported ? * If you install through the web admin, you can't skip installing the console
* not-working single-sign on or LDAP integration ? * No LDAP integration
* the app requires an important amount of RAM / disk / .. to install or to work properly * No multi-instance (you should use several buckets instead)
* etc...
* Other infos that people should be aware of, such as: * Other infos that people should be aware of, such as:
* any specific step to perform after installing (such as manually finishing the install, specific admin credentials, ...) * To log in the console, credentials are stored in /var/www/minio/.env
* how to configure / administrate the application if it ain't obvious * To interact with minio using the client from another app install script, you can have a look at outline_ynh app
* upgrade process / specificities / things to be aware of ?
* security considerations ?

View file

@ -182,7 +182,7 @@ ynh_script_progression --message="Configuring permissions..." --weight=1
# Make app public if necessary # Make app public if necessary
if [ $is_public -eq 1 ] if [ $is_public -eq 1 ]
then then
ynh_permission_update --permission="main" --add="visitors" ynh_permission_update --permission="main" -A "$console_domain"--add="visitors"
fi fi
#================================================= #=================================================