gluon-status-page: make index.html redirect to cgi

This commit is contained in:
Nils Schneider 2014-02-03 23:59:22 +01:00
parent 4da5b5ce37
commit 8aafc108a5
1 changed files with 11 additions and 9 deletions

View File

@ -1,10 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Status page TODO</title>
</head>
<body>
<p>TODO</p>
</body>
<html>
<head>
<meta http-equiv="refresh" content="0; URL=/cgi-bin/status">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<a href="/cgi-bin/status">Redirecting...</a>
</body>
</html>