Created
March 29, 2011 20:16
index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
backend default { | |
.host = "test-esi.localhost"; | |
.port = "8000"; | |
} | |
sub vcl_fetch { | |
esi; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- http://test-esi.localhost:8000/index.html --> | |
<html> | |
<head><title>Test ESI</title></head> | |
<body> | |
<esi:include src="partial.html" /> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- http://test-esi.localhost:8000/index.html --> | |
hello, world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Result on http://127.0.0.1:6081 = <esi:include /> not interpreted :'(((