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.
This commit is contained in:
parent
6c3f678554
commit
a9823cda3a
|
|
@ -24,8 +24,8 @@ export default defineNuxtConfig({
|
||||||
},
|
},
|
||||||
minio: {
|
minio: {
|
||||||
endPoint: "s3.portnimara.com",
|
endPoint: "s3.portnimara.com",
|
||||||
port: 9000,
|
port: 443,
|
||||||
useSSL: false,
|
useSSL: true,
|
||||||
accessKey: "279QFJV96Ja9wNB0YYmU1W3Pv4Ofeh3pxojcz0pzeC5LjRurq",
|
accessKey: "279QFJV96Ja9wNB0YYmU1W3Pv4Ofeh3pxojcz0pzeC5LjRurq",
|
||||||
secretKey: "y8ze6nmA2VHJWDsIU1eNEBq4R4WlmJWp97UE0zUR7E4zWLS6O",
|
secretKey: "y8ze6nmA2VHJWDsIU1eNEBq4R4WlmJWp97UE0zUR7E4zWLS6O",
|
||||||
bucketName: "client-portal",
|
bucketName: "client-portal",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue