1 2 3 4 5 6 7 8 9 10 11 12 13 |
server { listen 80; return 301 https: // $host$request_uri; } server { listen 443 ssl; # let the browsers know that we only accept HTTPS add_header Strict-Transport-Security max-age=2592000; ... } |