Sha256: 0a8353bbd99a79870e5ae4a15de44e18ef5d14d157bdc721e4fae6588d5772c6

Contents?: true

Size: 1.01 KB

Versions: 15

Compression:

Stored size: 1.01 KB

Contents

#!/usr/bin/env rackup

require_relative 'config/environment'

require 'rack/freeze'

if RACK_ENV == :production
	# Handle exceptions in production with a error page and send an email notification:
	use Utopia::Exceptions::Handler
	use Utopia::Exceptions::Mailer
else
	# We want to propate exceptions up when running tests:
	use Rack::ShowExceptions unless RACK_ENV == :test
	
	# Serve the public directory in a similar way to the web server:
	use Utopia::Static, root: 'public'
end

use Rack::Sendfile

use Utopia::ContentLength

use Utopia::Redirection::Rewrite,
	'/' => '/client/index'

use Utopia::Redirection::DirectoryIndex

use Utopia::Redirection::Errors,
	404 => '/errors/file-not-found'

use Utopia::Localization,
	:default_locale => 'en',
	:locales => ['en', 'de', 'ja', 'zh']

require 'utopia/session'
use Utopia::Session,
	:expires_after => 3600 * 24,
	:secret => ENV['UTOPIA_SESSION_SECRET']

use Utopia::Controller

use Utopia::Static

# Serve dynamic content
use Utopia::Content

run lambda { |env| [404, {}, []] }

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
async-websocket-0.14.0 examples/utopia/config.ru
async-websocket-0.13.1 examples/utopia/config.ru
async-websocket-0.13.0 examples/utopia/config.ru
async-websocket-0.12.2 examples/utopia/config.ru
async-websocket-0.12.1 examples/utopia/config.ru
async-websocket-0.12.0 examples/utopia/config.ru
async-websocket-0.11.1 examples/utopia/config.ru
async-websocket-0.11.0 examples/utopia/config.ru
async-websocket-0.10.0 examples/utopia/config.ru
async-websocket-0.9.0 examples/utopia/config.ru
async-websocket-0.8.0 examples/utopia/config.ru
async-websocket-0.7.0 examples/utopia/config.ru
async-websocket-0.6.1 examples/utopia/config.ru
async-websocket-0.6.0 examples/utopia/config.ru
async-websocket-0.5.0 examples/utopia/config.ru