Skip to content

webdemo1.rb

Hector Correa edited this page Jan 2, 2024 · 1 revision

Update the IP address and run it

require "sinatra"

set :port, 80
set :bind, 'xx.yy.zz.aa'
disable :strict_paths

get("/") do
  html = "<h1>Welcome to your first web app</h1>"
  html += "<p>You are on your way to beat Google :)</p>"
  return html
end

Clone this wiki locally