From 579920bbfcf3ed2fe834f7747f16acfc08856d5b Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Wed, 3 Dec 2025 14:13:07 +0100 Subject: [PATCH] Don't show non-https use, it's not a good practice --- README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 70251ac..686e284 100644 --- a/README.md +++ b/README.md @@ -24,17 +24,14 @@ go install git.ipng.ch/ipng/s3-genindex/cmd/s3-genindex@latest ## Quick Start ```bash +# Dry run to see what would be generated +s3-genindex -d /path/to/dir -n + # Local directory s3-genindex -d /path/to/dir # S3 bucket (requires AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY) -s3-genindex -s3 http://minio.example.com:9000/bucket - -# Dry run to see what would be generated -s3-genindex -d /path/to/dir -n - -# Show index.html files in listings -s3-genindex -d /path/to/dir -i +s3-genindex -s3 https://minio.example.com/bucket ``` ## Build