Nginx HTTP to HTTPS redirect for SSL

问答中心分类: NginxNginx HTTP to HTTPS redirect for SSL
oneinstack asked 9年 ago
How do I configure Nginx to automatically forward HTTP requests to HTTPS for SSL?

1 Answers
oneinstack answered 9年 ago
This server block uses the listen directive to accept requests on port 80 and supports IPv6.

server {
  listen [::]:80;
  listen 80;
 
  server_name oneinstack.com www.oneinstack.com;
 
  # and redirect to the https host (declared below)
  # avoiding http://www -> https://www -> https:// chain.
  return 301 https://oneinstack.com$request_uri;
}