Minio config file?

revilo951

Cadet
Joined
Jun 13, 2019
Messages
1
I'm trying to use the provided S3 service for providing an endpoint for a Synology to backup to. The synology requires virtual-host-style requests, rather than path-style requests. Minio can do this, but the options aren't exposed in the webui. After much fruitless googleing, I'm still trying to find the minio config on my FreeNAS box, so I can change the options I need.

Can someone point me in the right direction?
 
D

dlavigne

Guest
Have you created a feature request for this at bugs.ixsystems.com? If so, what is the ticket number?
 

lmmv

Cadet
Joined
Nov 26, 2020
Messages
2
Hi Community...

I am running minio service on
Version: FreeNAS-11.3-U5

In general, it works great, however from the GUI, I don't seem to see much of what we can do to control the server.
Is there a way to configure more advanced features and save the changes to a config file?

I had to disable the service in the guy and run minio configurations from a scrip file in order to achieve distributed bucket storage.. like this:

export MINIO_ACCESS_KEY=XXXXXXXXXX
export MINIO_SECRET_KEY=XXXXXXXXXXXXXXXXX
minio server http://minio{01...03}.lmmv.net/mnt/pool01/DataSet00{1...4}
 

lmmv

Cadet
Joined
Nov 26, 2020
Messages
2
Little more info about my previous post..

From CLI, I can see this:

/usr/local/bin/minio -C /usr/local/etc/minio -S /usr/local/etc/minio/certs server --address=:9000 --quiet /mnt/pool01/DS01
 
Top