Spioune
Spioune
Explore posts from servers
CCConvex Community
Created by Erkka on 4/2/2025 in #self-hosted
About Minio... I tried to find reason
maybe you need to set the Host header with your reverse proxy (nginx, traefik, caddy...)
26 replies
CCConvex Community
Created by Erkka on 4/2/2025 in #self-hosted
About Minio... I tried to find reason
I suspect some header mismatch
26 replies
CCConvex Community
Created by Erkka on 4/2/2025 in #self-hosted
About Minio... I tried to find reason
Do you have a way to inspect http requests to your minio instance with something like wireshark ?
26 replies
CCConvex Community
Created by Erkka on 4/2/2025 in #self-hosted
About Minio... I tried to find reason
did you set MINIO_DOMAIN env variable ? (To enable virtual host style url)
26 replies
CCConvex Community
Created by Erkka on 4/2/2025 in #self-hosted
About Minio... I tried to find reason
How does your S3_ENDPOINT_URL env variable look like ?
26 replies
CCConvex Community
Created by Erkka on 4/2/2025 in #self-hosted
About Minio... I tried to find reason
you are using a subdomain?
26 replies
CCConvex Community
Created by Erkka on 4/2/2025 in #self-hosted
About Minio... I tried to find reason
ah I will try with https later and let you know
26 replies
CCConvex Community
Created by Erkka on 4/2/2025 in #self-hosted
About Minio... I tried to find reason
assuming your database and minio are HA also
26 replies
CCConvex Community
Created by Erkka on 4/2/2025 in #self-hosted
About Minio... I tried to find reason
for HA, only one instance of the convex backend can run at the same time (because of transactions) but I guess with docker swarm/kubernetes if the server crashes you can spawn another instance on another node
26 replies
CCConvex Community
Created by Erkka on 4/2/2025 in #self-hosted
About Minio... I tried to find reason
docker-compose.yaml
services:
minio:
image: quay.io/minio/minio
ports:
- "9000:9000"
- "9001:9001"
volumes:
- ~/minio/data:/data
- ./root.key:/root.key
- ./root.cert:/root.cert
environment:
- MINIO_ROOT_USER=${MINIO_ROOT_USER:-}
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD:-}
- MINIO_KMS_KES_ENDPOINT=${MINIO_KMS_KES_ENDPOINT:-}
- MINIO_KMS_KES_KEY_FILE=${MINIO_KMS_KES_KEY_FILE:-}
- MINIO_KMS_KES_CERT_FILE=${MINIO_KMS_KES_CERT_FILE:-}
- MINIO_KMS_KES_KEY_NAME=${MINIO_KMS_KES_KEY_NAME:-}
command: server /data --address "0.0.0.0:9000" --console-address ":9001"
services:
minio:
image: quay.io/minio/minio
ports:
- "9000:9000"
- "9001:9001"
volumes:
- ~/minio/data:/data
- ./root.key:/root.key
- ./root.cert:/root.cert
environment:
- MINIO_ROOT_USER=${MINIO_ROOT_USER:-}
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD:-}
- MINIO_KMS_KES_ENDPOINT=${MINIO_KMS_KES_ENDPOINT:-}
- MINIO_KMS_KES_KEY_FILE=${MINIO_KMS_KES_KEY_FILE:-}
- MINIO_KMS_KES_CERT_FILE=${MINIO_KMS_KES_CERT_FILE:-}
- MINIO_KMS_KES_KEY_NAME=${MINIO_KMS_KES_KEY_NAME:-}
command: server /data --address "0.0.0.0:9000" --console-address ":9001"
.env
AWS_REGION=auto
AWS_ACCESS_KEY_ID=H8x58ENxEbRrLUzqarEo
AWS_SECRET_ACCESS_KEY=OgCEuXCcCul5uasqaqwpG2keqLveJ4AnmgQvhTHE
#AWS_SESSION_TOKEN=
S3_STORAGE_EXPORTS_BUCKET=bucket1
S3_STORAGE_SNAPSHOT_IMPORTS_BUCKET=bucket1
S3_STORAGE_MODULES_BUCKET=bucket1
S3_STORAGE_FILES_BUCKET=bucket1
S3_STORAGE_SEARCH_BUCKET=bucket1
S3_ENDPOINT_URL=http://172.18.0.4:9000

MINIO_ROOT_USER=ROOTNAME
MINIO_ROOT_PASSWORD=CHANGEME123
MINIO_KMS_KES_ENDPOINT=https://play.min.io:7373
MINIO_KMS_KES_KEY_FILE=root.key
MINIO_KMS_KES_CERT_FILE=root.cert
MINIO_KMS_KES_KEY_NAME=my-minio-key
AWS_REGION=auto
AWS_ACCESS_KEY_ID=H8x58ENxEbRrLUzqarEo
AWS_SECRET_ACCESS_KEY=OgCEuXCcCul5uasqaqwpG2keqLveJ4AnmgQvhTHE
#AWS_SESSION_TOKEN=
S3_STORAGE_EXPORTS_BUCKET=bucket1
S3_STORAGE_SNAPSHOT_IMPORTS_BUCKET=bucket1
S3_STORAGE_MODULES_BUCKET=bucket1
S3_STORAGE_FILES_BUCKET=bucket1
S3_STORAGE_SEARCH_BUCKET=bucket1
S3_ENDPOINT_URL=http://172.18.0.4:9000

MINIO_ROOT_USER=ROOTNAME
MINIO_ROOT_PASSWORD=CHANGEME123
MINIO_KMS_KES_ENDPOINT=https://play.min.io:7373
MINIO_KMS_KES_KEY_FILE=root.key
MINIO_KMS_KES_CERT_FILE=root.cert
MINIO_KMS_KES_KEY_NAME=my-minio-key
26 replies
CCConvex Community
Created by Erkka on 4/2/2025 in #self-hosted
About Minio... I tried to find reason
@Erkka @Nipunn I just tried with a minio docker container and everything works fine
26 replies
CCConvex Community
Created by fartinmartin on 3/2/2025 in #support-community
Add access token from OAuth provider
I guess storing them in the user table is fine.
13 replies