Answers for "why http is not redirecting to https in nginx"

3

How to redirect a request from http to https using nginx

server {

    listen 80 default_server;


    server_name _;


    return 301 https://$host$request_uri;

}
Posted by: Guest on June-17-2020

Code answers related to "why http is not redirecting to https in nginx"

Browse Popular Code Answers by Language