モケラ

Tech Sheets

mokelab

httpのリクエストをhttpsにリダイレクトする

最終更新日:2022-05-09

このtech sheetのように、httpでのリクエストをhttpsにリダイレクトするには、returnを使って301 Moved Permanentlyを返します。

server {
    listen       80;
    server_name  tech.mokelab.com;
    return 301 https://tech.mokelab.com$request_uri;
}

一覧に戻る