Browse Source

removed extra section for advanced setup

Toastie 1 year ago
parent
commit
810c07c648
1 changed files with 21 additions and 13 deletions
  1. 21 13
      minio/README.md

+ 21 - 13
minio/README.md

@@ -9,13 +9,13 @@ Scope of the **basic setup** is to run minio
 
 Scope of the **advance setup** is to run minio in addition
 - with TLS support
-- with web ui (console, port 9001) exposed to a reverse proxy (port 443)
-- with TLS support for s3 (port 9000), borrowed from the reverse proxy above
+- with web ui (console, port 9001) exposed
+- with TLS support for s3 (port 9000), borrowed from a reverse proxy
 
 
 
 ## Configuration
-### Basic Configuration
+
 ```
 # Prepare a directory
 miniodir="/opt/docker/minio"
@@ -28,26 +28,34 @@ git clone https://git.in-ulm.de/ulpeters/minio.git
 
 # Prepare your configuration
 cp .env.template .env
-  # Set custom access and secret keys in .env
+  # Update .env
+  # - Set custom access and secret keys
+  # - set fqdn in $HOSTNAME
+  # - set $CERT_PATH to your reverse proxy
+  
+  
 
 
 # Create a home and data directory owned by 1000:1000
 mkdir -p $miniodir/data/home $miniodir/data/data
 chown -R 1000:1000 $miniodir
 
-# Start minio
+# Start miniominio
+##basic
 docker-compose up -f docker-compose.yml up
 docker logs --follow minio
+
+##advances
+docker-compose up
+docker logs --follow minio
 ```
-**Make sure to [generate](KEY-GENERATION.md) and set custom access and secret keys!!**
+- Make sure to [generate](KEY-GENERATION.md) and set custom access and secret keys!!
+
+
+
+
 
+- [Reverse proxy with Letsencrypt companion](https://git.in-ulm.de/ulpeters/reverse-proxy) running
 
-### Advanced Configuration
 
-#### Preconditions:
-  - [Reverse proxy with Letsencrypt companion](https://git.in-ulm.de/ulpeters/reverse-proxy) running
 
-#### Steps
-  - set $HOSTNAME in .env
-  - set $CERT_PATH in .env
-  - Setup FW