# File lib/picnic/server.rb, line 26
    def app
      reload!
       
      rapp =  apps.values.first

      rapp = Rack::Static.new(rapp, @conf[:static]) if @conf[:static]

      if @conf.uri_path
        rapp = Rack::URLMap.new(@conf.uri_path => rapp)
      end

      rapp = Rack::ContentLength.new(rapp)
      rapp = Rack::Lint.new(rapp)
      rapp = Camping::Server::XSendfile.new(rapp)
      rapp = Rack::ShowExceptions.new(rapp)
    end