munificent / craftinginterpreters

Repository for the book "Crafting Interpreters"
http://www.craftinginterpreters.com/
Other
8.43k stars 1.01k forks source link

No HTTPS redirect #1087

Closed elimerl closed 1 year ago

elimerl commented 1 year ago

This is an INCREDIBLY minor issue, but the site's HTTP page does not redirect to HTTPS. It seems that this is served using Apache from the headers, so it should be something like:

<VirtualHost *:80> 
  ServerName craftinginterpreters.com
  ServerAlias www.craftingintepreters.com

  Redirect permanent / https://craftinginterpreters.com/
</VirtualHost>

Thanks for the fantastic book!