Skip to main content

All Questions

0 votes
1 answer
1k views

nginx: http to https not working on chrome

I've got this nginx configuration to redirect http to https: # http redirects to https server { listen 80 default_server; server_name _; return 301 https://$host$request_uri; } server { ...
Andrius's user avatar
  • 607