forked from wryobservations/rummager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ru
41 lines (30 loc) · 952 Bytes
/
config.ru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
app_path = File.dirname(__FILE__)
$:.unshift(app_path) unless $:.include?(app_path)
require "env"
require "bundler"
Bundler.require(:default, ENV['RACK_ENV'])
require "logger"
$LOAD_PATH << './lib'
require "rummager/app"
in_development = ENV['RACK_ENV'] == 'development'
log_path = ENV.fetch("LOG_PATH", in_development ? nil : "log/production.log")
if in_development
set :logging, Logger::DEBUG
end
if log_path
enable :logging
log = File.new(log_path, "a")
log.sync = true
STDOUT.reopen(log)
STDERR.reopen(log)
end
unless in_development
use Rack::Logstasher::Logger,
Logger.new("log/production.json.log"),
extra_request_headers: { "GOVUK-Request-Id" => "govuk_request_id", "x-varnish" => "varnish_id" }
end
require "gds_api/middleware/govuk_header_sniffer"
use GdsApi::GovukHeaderSniffer, 'HTTP_GOVUK_REQUEST_ID'
use GdsApi::GovukHeaderSniffer, 'HTTP_GOVUK_ORIGINAL_URL'
enable :dump_errors, :raise_errors
run Rummager