Created
July 14, 2017 09:31
-
-
Save yannick/337797c1b1a14ff339cb5ae819187038 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| listen: 8080 | |
| hosts: | |
| "127.0.0.1.xip.io:8080": | |
| paths: | |
| /: | |
| mruby.handler: | | |
| html = "hello world, i'm running h2o on #{OS.sysname}" | |
| Proc.new do |env| | |
| [200, {'content-type' => 'text/plain'}, [html]] | |
| end | |
| access-log: /dev/stdout |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment