LoginSignup
4
5

More than 5 years have passed since last update.

herokuのメンテナンス画面はiframeで表示しているだけ

Posted at
heroku maintenance:on

したサイトのhtmlソースを見てみると、

<!DOCTYPE html>
    <html>
    <head>
      <style type="text/css">
        html, body, iframe { margin: 0; padding: 0; height: 100%; }
        iframe { display: block; width: 100%; border: none; }
      </style>
    <title>Offline for Maintenance</title>
    </head>
    <body>
      <iframe src="https://s3-ap-northeast-1.amazonaws.com/pplog-static/503.html">
        <p>Application Error</p>
      </iframe>
    </body>
    </html>

おお!ということで、s3はユーザーが近いところのregionにすると良さそうです。

このことはherokaiで教えていただきました。

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5