forked from ilot/ilot-io
32 lines
897 B
Markdown
32 lines
897 B
Markdown
[[!meta title="HTTP 502: Starting up"]]
|
|
|
|
# HTTP 502
|
|
|
|
## Waiting for ilot to start up
|
|
|
|
### Some system components can take a moment to start completely.
|
|
<hr/>
|
|
Please contact us using [our support page](https://support.ilot.io) if this problem persists.
|
|
|
|
You can also check our [network status](https://status.ilot.io) for up-to-date status information on our services
|
|
<hr/>
|
|
This page will automatically reload every 5 seconds.
|
|
|
|
<a href="javascript:history.back()" class="js-go-back go-back">Go back</a>
|
|
|
|
|
|
<p>Refreshed at <span id="refreshedAt"></span></p>
|
|
|
|
<script>
|
|
const now = new Date();
|
|
const refreshedAt = now.toLocaleTimeString();
|
|
|
|
document.getElementById("refreshedAt").innerText = refreshedAt;
|
|
|
|
window.setTimeout(() => location.reload(), 5000);
|
|
|
|
if (history.length > 1) {
|
|
const goBack = document.querySelector('.js-go-back');
|
|
goBack.style.display = 'inline';
|
|
}
|
|
</script>
|