diff options
Diffstat (limited to 'config.ru')
-rw-r--r-- | config.ru | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config.ru b/config.ru new file mode 100644 index 0000000..e2aedfd --- /dev/null +++ b/config.ru @@ -0,0 +1,6 @@ +require_relative './application.rb' +require 'rack/protection' +use Rack::Protection, :except => :session_hijacking +use Rack::Reloader +# use Rack::ContentType, "application/ld+json" +run Application.new |