Forceful redirect from HTTP to HTTPS
Nginx Below method can be used when you wish all configured sites to definitely only use https: server { listen 80 default_server; server_name _; return 301 https://$host$request_uri; } We can…
Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog
Nginx Below method can be used when you wish all configured sites to definitely only use https: server { listen 80 default_server; server_name _; return 301 https://$host$request_uri; } We can…