-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmaintenance.php
26 lines (26 loc) · 1.1 KB
/
maintenance.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
header('HTTP/1.1 503 Service Temporarily Unavailable',true,503);
header('Status: 503 Service Temporarily Unavailable');
header('Retry-After: 3600');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex,nofollow">
<title>503 - Temporarily Closed For Maintenance</title>
<style type="text/css">
<!--
p {font-family: "Verdana", sans-serif;}
-->
</style>
</head>
<body>
<h1>Down for maintenance - please try again later</h1>
<p>The <strong>LibreOffice</strong> website is undergoing a short maintenance. Sorry for the inconvenience.</p>
<p>Please try again in 10 minutes. In the meantime you can <a href="http://wiki.documentfoundation.org">browse to our wiki</a> instead.</p>
<p>If you came to download LibreOffice, <a href="http://download.documentfoundation.org/libreoffice/stable/">head over to our download server</a>.</p>
<p>Normal operation will resume as soon as possible.</p>
</body>
</html>