aboutsummaryrefslogtreecommitdiffstats
path: root/blobs/minio/minio.conf
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-05-28 14:27:03 -0700
committerBryan Newbold <bnewbold@archive.org>2020-05-28 14:27:05 -0700
commit5684e2e748e5ddc5962597711af1a63722c4ebde (patch)
tree8cb585b2aab5d606cd1fccf0efa86e3ffc14cc30 /blobs/minio/minio.conf
parent79c3d690c12ad46d7ac7c2bfcded536dbbf5fe20 (diff)
downloadsandcrawler-5684e2e748e5ddc5962597711af1a63722c4ebde.tar.gz
sandcrawler-5684e2e748e5ddc5962597711af1a63722c4ebde.zip
move minio directory to 'blobs'
Part of migration from minio to seaweedfs, should be agnostic about what our actual blobstore (S3 API) is.
Diffstat (limited to 'blobs/minio/minio.conf')
-rw-r--r--blobs/minio/minio.conf14
1 files changed, 14 insertions, 0 deletions
diff --git a/blobs/minio/minio.conf b/blobs/minio/minio.conf
new file mode 100644
index 0000000..2e93f9a
--- /dev/null
+++ b/blobs/minio/minio.conf
@@ -0,0 +1,14 @@
+
+# Volume to be used for MinIO server.
+MINIO_VOLUMES="/sandcrawler-minio/data"
+# Use if you want to run MinIO on a custom port.
+MINIO_OPTS="--address :9000"
+# Access Key of the server.
+MINIO_ACCESS_KEY=REDACTED
+# Secret key of the server.
+MINIO_SECRET_KEY=REDACTED
+
+# may need to set these manually using `mc admin config get`, edit the JSON, then `set`
+MINIO_COMPRESS="on"
+MINIO_COMPRESS_EXTENSIONS=".txt,.log,.csv,.json,.tar,.xml,.bin,.pdf,.tsv"
+MINIO_COMPRESS_MIME_TYPES="text/*,application/json,application/xml,application/pdf,application/octet-stream"