Skip to content

Instantly share code, notes, and snippets.

@ppworks
Created November 13, 2013 03:59
Show Gist options
  • Save ppworks/7443501 to your computer and use it in GitHub Desktop.
Save ppworks/7443501 to your computer and use it in GitHub Desktop.
herokuのメンテナンス画面はiframeで表示しているだけ ref: http://qiita.com/ppworks/items/79a69abe8147431c271e
heroku maintenance:on
<!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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment