1
0
mirror of https://github.com/hak8or/proxmox_scripts.git synced 2025-01-15 11:57:57 +00:00
proxmox_scripts/ruby_server/website.rb

13 lines
180 B
Ruby

require 'rubygems'
require 'bundler/setup'
require 'sinatra'
get '/' do
'Hello world! :D'
end
get '/:text' do
"Hello there, I see you are accessing #{params['text']}"
end