forked from Mapotempo/optimizer-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.ru
50 lines (42 loc) · 1.39 KB
/
server.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
42
43
44
45
46
47
48
49
50
# Copyright © Mapotempo, 2016
#
# This file is part of Mapotempo.
#
# Mapotempo is free software. You can redistribute it and/or
# modify since you respect the terms of the GNU Affero General
# Public License as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# Mapotempo is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the Licenses for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Mapotempo. If not, see:
# <http://www.gnu.org/licenses/agpl.html>
#
require './environment'
use Rack::Cors do
allow do
origins '*'
resource '*',
headers: :any,
methods: :any,
expose: ['Cache-Control', 'Content-Encoding', 'Content-Type'],
max_age: 1728000,
credentials: false
end
end
use Raven::Rack
use Rack::Locale
use Rack::ServerPages do |config|
config.view_path = 'public'
end
run Rack::ServerPages::NotFound
#\ -p 1791 # rubocop:disable Layout/LeadingCommentSpace
# The above cop disable is necessary.
# Please find some explanation in the links below:
# https://stackoverflow.com/a/39260752/1200528
# https://www.rubydoc.info/gems/puma/3.6.2#rackup
run Api::Root
use ActionDispatch::RemoteIp