Here is a code block template for a standard NGINX redirect to SSL. This is a wildcard redirect so it will preserve the original URI.
server { listen 80; server_name Domain.com www.Domain.com; return 301 https://Domain.com$request_uri; }
Here is a code block template for a standard NGINX redirect to SSL. This is a wildcard redirect so it will preserve the original URI.
server { listen 80; server_name Domain.com www.Domain.com; return 301 https://Domain.com$request_uri; }