Registration
Prerequisites
- MinIO Server
Login
The access data and the URL to the MinIO Console can be found in the password vault of the MinIO server. Call up the MinIO Console, enter the relevant access data and select Login to log in.
\nAfter successfully logging in, you will be redirected to the MinIO Console overview.
Customize MinIO Console domain
If you want to customize the domain of the MinIO Console, you need to adjust the NGINX configuration.
Connect to your MinIO server as root
user via SSH.
nano /etc/nginx/conf.d/<server-id>.creoline.cloud.conf
\In the configuration file, you must enter the following NGINX server directive for the MinIO Console once.
server {
- server_name admin.<server-id>.creoline.cloud;
+ server_name admin.<your-domain.tld>;
listen 9443;
...
}
+
means this entry has been added (your desired domain)
-
means this entry has been removed (our preconfigured domain)
You can also keep our entry here if you wish.
Save the file with 'Ctrl + S' and then exit with 'Ctrl + X'.
Next, the Let's Encrypt certificate must be renewed so that your domain is protected accordingly.
certbot --nginx --expand -d admin.<your-domain.tld> -d bucket.<your-domain.tld> --non-interactive --agree-tos -m <your e-mail address>
If you have retained our entry, we recommend that you also specify the option -d admin.<server-id>.creoline.cloud
so that this is also protected by the SSL certificate.
You can then check whether you can successfully establish an encrypted connection to MinIO Console via HTTPS by calling admin.your-domain.tld
.