This document explains the steps required to set up Nginx proxy and SSL termination for Minio servers running in the backgronud.
Create a directory /etc/nginx/ssl/domain.abc
, here domain.abc
is the name of your website domain. Then use the below commands
sudo openssl genrsa -out private.key 2048
sudo openssl req -new -x509 -days 3650 -key private.key -out public.crt -subj "/C=US/ST=state/L=location/O=organization/CN=domain.abc"