Route HTTP to HTTPS [NGINX]
There is no magic here, just add the below to your Nginx config file
server {
listen 80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
It is a server block that listens to the default port, and works for every se...
sys.limistah.dev1 min read