diff --git a/docs/how-tos/backup-to-s3.md b/docs/how-tos/backup-to-s3.md index 8fa7f68..6f80c0d 100644 --- a/docs/how-tos/backup-to-s3.md +++ b/docs/how-tos/backup-to-s3.md @@ -37,6 +37,7 @@ services: - AWS_SECRET_KEY=xxxxx ## In case you are using S3 alternative such as Minio and your Minio instance is not secured, you change it to true - AWS_DISABLE_SSL="false" + - AWS_FORCE_PATH_STYLE="false" # mysql-bkup container must be connected to the same network with your database networks: diff --git a/docs/how-tos/deploy-on-kubernetes.md b/docs/how-tos/deploy-on-kubernetes.md index 8e7b182..97d9bee 100644 --- a/docs/how-tos/deploy-on-kubernetes.md +++ b/docs/how-tos/deploy-on-kubernetes.md @@ -59,6 +59,8 @@ spec: value: "xxxx" - name: AWS_DISABLE_SSL value: "false" + - name: AWS_FORCE_PATH_STYLE + value: "false" restartPolicy: Never ``` diff --git a/docs/how-tos/restore-from-s3.md b/docs/how-tos/restore-from-s3.md index 6ef40d0..c6ff46e 100644 --- a/docs/how-tos/restore-from-s3.md +++ b/docs/how-tos/restore-from-s3.md @@ -40,6 +40,7 @@ services: - AWS_SECRET_KEY=xxxxx ## In case you are using S3 alternative such as Minio and your Minio instance is not secured, you change it to true - AWS_DISABLE_SSL="false" + - AWS_FORCE_PATH_STYLE="false" # mysql-bkup container must be connected to the same network with your database networks: - web diff --git a/examples/k8s-job.yaml b/examples/k8s-job.yaml index 5d7f37f..9ce6943 100644 --- a/examples/k8s-job.yaml +++ b/examples/k8s-job.yaml @@ -44,4 +44,6 @@ spec: value: "xxxx" - name: AWS_DISABLE_SSL value: "false" + - name: AWS_FORCE_PATH_STYLE + value: "false" restartPolicy: Never \ No newline at end of file