Skip to content

Instantly share code, notes, and snippets.

@OleMchls
Last active November 28, 2024 12:58
Show Gist options
  • Select an option

  • Save OleMchls/8852668 to your computer and use it in GitHub Desktop.

Select an option

Save OleMchls/8852668 to your computer and use it in GitHub Desktop.
My SOA talk ESI example
<?php header('Surrogate-Control: "ESI/1.0"'); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My super simple ESI example</title>
</head>
<body>
<p>Hello world! This is my super simple ESI example.</p>
<aside><esi:include src="my-other-service.example.com/sidebar.html" /></aside>
</body>
</html>
<ul>
<li>Home</li>
<li>Blog</li>
<li>Memes</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment