Reconfigure MinIO to be proxied through Nginx

This change is necessary because some games need to connect to a S3 server directly, and MinIO is limited to listening on one domain for virtual hosts.
This commit is contained in:
Matthew Lopez
2024-02-22 21:13:37 -05:00
parent b632f3e5a6
commit 56e45e8fcd
11 changed files with 25 additions and 13 deletions

View File

@@ -2,7 +2,7 @@
set -eu
while ! mc alias set minio http://minio:9000 "$MINIO_ROOT_USER" "$MINIO_ROOT_PASSWORD" >/dev/null 2>&1; do
while ! mc alias set minio http://minio.pretendo.cc "$MINIO_ROOT_USER" "$MINIO_ROOT_PASSWORD" >/dev/null 2>&1; do
echo "Waiting for MinIO to start..."
sleep 1
done