From a9823cda3a28e8f4c240ec3a2bf876ec1af07985 Mon Sep 17 00:00:00 2001 From: Matt Date: Wed, 4 Jun 2025 16:50:07 +0200 Subject: [PATCH] Switch Minio connection to use SSL on port 443 Update Minio configuration to use secure HTTPS connection by: - Changing port from 9000 to 443 (standard HTTPS port) - Enabling SSL/TLS encryption (useSSL: true) This ensures secure communication with the S3-compatible storage service. --- nuxt.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 6795314..7f6f3ca 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -24,8 +24,8 @@ export default defineNuxtConfig({ }, minio: { endPoint: "s3.portnimara.com", - port: 9000, - useSSL: false, + port: 443, + useSSL: true, accessKey: "279QFJV96Ja9wNB0YYmU1W3Pv4Ofeh3pxojcz0pzeC5LjRurq", secretKey: "y8ze6nmA2VHJWDsIU1eNEBq4R4WlmJWp97UE0zUR7E4zWLS6O", bucketName: "client-portal",