Skip to content

Instantly share code, notes, and snippets.

@rimusz
Created May 14, 2014 10:19
Show Gist options
  • Save rimusz/d948ddc1535107f375fc to your computer and use it in GitHub Desktop.
Save rimusz/d948ddc1535107f375fc to your computer and use it in GitHub Desktop.
curl -v test1.com
* Adding handle: conn: 0x7fdaac000000
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x7fdaac000000) send_pipe: 1, recv_pipe: 0
* About to connect() to test1.com port 80 (#0)
* Trying 172.17.8.99...
* Connected to test1.com (172.17.8.99) port 80 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.30.0
> Host: test1.com
> Accept: */*
>
< HTTP/1.1 404 Not Found
< Content-Type: text/html; charset=utf-8
< Date: Tue, 13 May 2014 06:09:24 GMT
< Transfer-Encoding: chunked
<
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nuxeo.io - Something went wrong</title>
<style>
* {
box-sizing: border-box;
}
::-moz-selection {
background: #46a7de;
color:#fff;
text-shadow: none;
}
::selection {
background: #46a7de;
color:#fff;
text-shadow: none;
}
html {
height: 100%;
font-size: 16px;
line-height: 1.4;
color: #333;
background: #e6f3fa;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
html,
input {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
text-align: center;
height: 100%;
margin: 0;
}
.container {
margin: 0 auto;
padding: 0 3em;
width: 70%;
display: table;
height:100%;
text-align: left;
}
.container img {
width: 100%;
}
.column {
display: table-cell;
padding: 1em;
vertical-align: middle;
height:100%;
}
.column.left {
width:40%
}
.column.right {
width:50%
}
h1 {
font-size: 2.3em;
}
p {
margin: .5em 0;
}
input::-moz-focus-inner {
padding: 0;
border: 0;
}
a {
text-decoration: none;
color: #46a7de
}
</style>
</head>
<body>
<div class="container">
<div class="column left">
<img src="/__static__/not_found.gif" alt="page not found" />
</div>
<div class="column right">
<h1>What are you looking for?</h1>
<p>Maybe you have a mistyped address or an out-of-date link.</p>
<p>You can check the correct URL in <a href="#" alt="">your dashboard</a> or
contact the <a href="#" alt="">support team</a> if you're sure of your address.</p>
</div>
</div>
</body>
</html>
</body>
</html>
* Connection #0 to host test1.com left intact
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment