Skip to content

Instantly share code, notes, and snippets.

View andre-paulo98's full-sized avatar
🎯
Focusing

André Paulo andre-paulo98

🎯
Focusing
View GitHub Profile
@andre-paulo98
andre-paulo98 / maintenance.php
Last active March 31, 2017 16:38 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<?php
header("HTTP/1.1 503 Service Temporarily Unavailable");
header("Status: 503 Service Temporarily Unavailable");
header("Retry-After: 300");
?>
<!doctype html>
<title>Site Maintenance</title>
<meta http-equiv="refresh" content="300">
<style>
body { text-align: center; padding: 20px; }