Nginxにて自動的にHTTPS経由で取得させ標準化

1 min read

VPS(nginx) <--->自宅鯖(Devuan)で接続しているのだが、httpでもアクセスできてしまうことによってサイトに不具合が起きてしまうことから解決へ。

シンプルにlocation に以下を記述するだけ。

*/nginx.conf

add_header Content-Security-Policy upgrade-insecure-requests;

これだけでHTTPSが標準化になります。