Hi, I have read the article,
I already have the SSL installed and configured SSL, but it is not auto redirecting http to https, so I believe the only thing I have to follow is step 04 which says
04: Redirect all HTTP traffic to HTTPS in your Nginx config:
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
-------------
I know that I am adding it nginx.config file in etc/nginx folder, shall I just paste the code in the end? Also am I replacing 80 with 443 or redireciting it to 443 ? and how?
Regards,
Paul