いつもお世話になっております。
イメージリンクの草野です。
Cloud9でAblogを動かしたいと思い、
下記の記事を参考にしながら、動かしているのですがうまくいきません。
インストールは成功し、その時は正常に動作していたのですが、
数時間後サーバーが落ちてから再度立ち上げると下記のエラーが出ます。
再インストールすると再度正常に見ることができますが、
一度サーバーが落ちるとやはり下記のエラーがでます。
HPE_HEADER_OVERFLOW: Request could not be proxied!
There was an error proxying the request.
config.server.phpを下記に直し、
define('SSL_ENABLE', 1);
define('FULLTIME_SSL_ENABLE', 1);
httpでつなぐと下記のソースが直に表示されます。
(なぜか一度だけサイトが正しく表示されたことがあります。)
<html>
<head>
<meta charset='utf-8'>
<title>Error 502 - Bad Gateway</title>
<link rel="stylesheet" type="text/css" href="https://cdn.c9.io/errors/style.css" />
<style type="text/css">
.error_content {
background: rgba(255, 255, 255, 0.23);
padding: 10px;
width: 641px;
margin: 25px 0;
display: none;
}
#error-msg {
display: block;
}
</style>
</head>
<body class="errorUnknown light">
<div id="wrapper">
<h1>Error 502 - Bad Gateway</h1>
<div class="error_content" id="error-msg">
<p>Please click <a href="javascript:location.reload(true)">here</a> to try again, if the issue persists please contact <a href="https://c9.io/support">support</a></p>
</div>
<a href="http://status.c9.io">Status Page</a> |
<a href="https://c9.io/support">Support</a> |
<a href="https://c9.io/dashboard.html">Dashboard</a> |
<a href="https://c9.io">Home</a>
</div>
</body>
</html>
何とか動かしたいので、アドバイス等ご教授いただければと思います。
よろしくお願い致します。