-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
-<html>
+<!DOCTYPE html>
+<html lang="en">
<head>
<title>tile.openstreetmap.org</title>
-<!-- MANAGED VIA CHEF --!>
+<!-- MANAGED VIA CHEF -->
<meta name="robots" content="noindex">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
-You've reached the OpenStreetMap.org tile server. (<%= node['fqdn'] %>)<br />
+You've reached the OpenStreetMap.org tile server (<%= node['fqdn'] %>)<br />
<dl>
<dt>If you are a user...</dt>
<dd>You probably want <a href="https://www.openstreetmap.org/">OpenStreetMap</a> itself.</dd>
it { should be_listening }
its("protocols") { should cmp "tcp" }
end
+
+describe http("http://localhost") do
+ its("status") { should cmp 301 }
+end
+
+describe http("https://localhost", :ssl_verify => false) do
+ its("status") { should cmp 200 }
+end