2011-10-08 17:36:38 -04:00
|
|
|
require File.expand_path('../boot', __FILE__)
|
|
|
|
|
|
|
|
require 'rails/all'
|
2016-04-15 11:35:40 -04:00
|
|
|
|
2013-12-05 09:26:34 -05:00
|
|
|
Bundler.require(:default, Rails.env)
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
class Application < Rails::Application
|
2016-04-15 11:35:40 -04:00
|
|
|
require_dependency Rails.root.join('lib/gitlab/redis')
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
# Settings in config/environments/* take precedence over those specified here.
|
|
|
|
# Application configuration should go into files in config/initializers
|
|
|
|
# -- all .rb files in that directory are automatically loaded.
|
|
|
|
|
2016-04-05 12:43:48 -04:00
|
|
|
# Sidekiq uses eager loading, but directories not in the standard Rails
|
|
|
|
# directories must be added to the eager load paths:
|
|
|
|
# https://github.com/mperham/sidekiq/wiki/FAQ#why-doesnt-sidekiq-autoload-my-rails-application-code
|
|
|
|
# Also, there is no need to add `lib` to autoload_paths since autoloading is
|
|
|
|
# configured to check for eager loaded paths:
|
|
|
|
# https://github.com/rails/rails/blob/v4.2.6/railties/lib/rails/engine.rb#L687
|
|
|
|
# This is a nice reference article on autoloading/eager loading:
|
|
|
|
# http://blog.arkency.com/2014/11/dont-forget-about-eager-load-when-extending-autoload
|
|
|
|
config.eager_load_paths.push(*%W(#{config.root}/lib
|
2016-04-15 11:35:40 -04:00
|
|
|
#{config.root}/app/models/ci
|
2016-04-05 12:43:48 -04:00
|
|
|
#{config.root}/app/models/hooks
|
2016-04-15 11:35:40 -04:00
|
|
|
#{config.root}/app/models/members
|
|
|
|
#{config.root}/app/models/project_services))
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2016-05-19 15:58:35 -04:00
|
|
|
config.generators.templates.push("#{config.root}/generator_templates")
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
# Only load the plugins named here, in the order given (default is alphabetical).
|
|
|
|
# :all can be used as a placeholder for all plugins not explicitly named.
|
|
|
|
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|
|
|
|
|
|
|
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
|
|
# config.i18n.default_locale = :de
|
2014-01-09 07:17:02 -05:00
|
|
|
config.i18n.enforce_available_locales = false
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
# Configure the default encoding used in templates for Ruby 1.9.
|
|
|
|
config.encoding = "utf-8"
|
|
|
|
|
|
|
|
# Configure sensitive parameters which will be filtered from the log file.
|
2016-05-19 15:58:35 -04:00
|
|
|
#
|
2016-04-28 14:12:03 -04:00
|
|
|
# Parameters filtered:
|
|
|
|
# - Password (:password, :password_confirmation)
|
|
|
|
# - Private tokens (:private_token)
|
|
|
|
# - Two-factor tokens (:otp_attempt)
|
|
|
|
# - Repo/Project Import URLs (:import_url)
|
|
|
|
# - Build variables (:variables)
|
|
|
|
# - GitLab Pages SSL cert/key info (:certificate, :encrypted_key)
|
|
|
|
# - Webhook URLs (:hook)
|
2016-10-04 10:35:41 -04:00
|
|
|
# - GitLab-shell secret token (:secret_token)
|
2016-04-28 14:12:03 -04:00
|
|
|
# - Sentry DSN (:sentry_dsn)
|
|
|
|
# - Deploy keys (:key)
|
|
|
|
config.filter_parameters += %i(
|
|
|
|
certificate
|
|
|
|
encrypted_key
|
|
|
|
hook
|
|
|
|
import_url
|
|
|
|
key
|
|
|
|
otp_attempt
|
|
|
|
password
|
|
|
|
password_confirmation
|
|
|
|
private_token
|
2016-10-04 10:35:41 -04:00
|
|
|
secret_token
|
2016-04-28 14:12:03 -04:00
|
|
|
sentry_dsn
|
|
|
|
variables
|
|
|
|
)
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-11-14 08:45:15 -05:00
|
|
|
# Enable escaping HTML in JSON.
|
|
|
|
config.active_support.escape_html_entities_in_json = true
|
|
|
|
|
|
|
|
# Use SQL instead of Active Record's schema dumper when creating the database.
|
|
|
|
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
|
|
|
# like if you have constraints or database-specific column types
|
|
|
|
# config.active_record.schema_format = :sql
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
# Enable the asset pipeline
|
|
|
|
config.assets.enabled = true
|
2016-07-13 10:43:42 -04:00
|
|
|
config.assets.paths << Gemojione.images_path
|
2016-02-12 15:34:20 -05:00
|
|
|
config.assets.precompile << "*.png"
|
2014-04-02 08:42:35 -04:00
|
|
|
config.assets.precompile << "print.css"
|
2016-01-28 11:54:13 -05:00
|
|
|
config.assets.precompile << "notify.css"
|
2016-03-22 22:20:47 -04:00
|
|
|
config.assets.precompile << "mailers/*.css"
|
2016-07-12 16:30:09 -04:00
|
|
|
config.assets.precompile << "graphs/graphs_bundle.js"
|
|
|
|
config.assets.precompile << "users/users_bundle.js"
|
|
|
|
config.assets.precompile << "network/network_bundle.js"
|
|
|
|
config.assets.precompile << "profile/profile_bundle.js"
|
2016-07-26 08:44:51 -04:00
|
|
|
config.assets.precompile << "diff_notes/diff_notes_bundle.js"
|
2016-07-22 12:52:48 -04:00
|
|
|
config.assets.precompile << "boards/boards_bundle.js"
|
2016-08-03 03:42:26 -04:00
|
|
|
config.assets.precompile << "boards/test_utils/simulate_drag.js"
|
2016-06-24 14:26:11 -04:00
|
|
|
config.assets.precompile << "blob_edit/blob_edit_bundle.js"
|
|
|
|
config.assets.precompile << "snippet/snippet_bundle.js"
|
2016-06-23 13:05:02 -04:00
|
|
|
config.assets.precompile << "lib/utils/*.js"
|
|
|
|
config.assets.precompile << "lib/*.js"
|
2016-07-11 03:30:22 -04:00
|
|
|
config.assets.precompile << "u2f.js"
|
2014-02-25 12:15:08 -05:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
# Version of your assets, change this if you want to expire all your assets
|
|
|
|
config.assets.version = '1.0'
|
2013-08-19 16:20:32 -04:00
|
|
|
|
2015-03-10 08:32:28 -04:00
|
|
|
config.action_view.sanitized_allowed_protocols = %w(smb)
|
|
|
|
|
2016-09-22 08:20:17 -04:00
|
|
|
config.middleware.insert_before Warden::Manager, Rack::Attack
|
2013-12-05 03:29:45 -05:00
|
|
|
|
|
|
|
# Allow access to GitLab API from other domains
|
2016-09-22 08:20:17 -04:00
|
|
|
config.middleware.insert_before Warden::Manager, Rack::Cors do
|
2016-09-22 08:21:55 -04:00
|
|
|
allow do
|
|
|
|
origins Gitlab.config.gitlab.url
|
|
|
|
resource '/api/*',
|
|
|
|
credentials: true,
|
|
|
|
headers: :any,
|
|
|
|
methods: :any,
|
|
|
|
expose: ['Link']
|
|
|
|
end
|
|
|
|
|
|
|
|
# Cross-origin requests must not have the session cookie available
|
2013-12-05 03:29:45 -05:00
|
|
|
allow do
|
|
|
|
origins '*'
|
2015-01-23 15:33:20 -05:00
|
|
|
resource '/api/*',
|
2016-09-22 08:21:55 -04:00
|
|
|
credentials: false,
|
2015-01-23 15:33:20 -05:00
|
|
|
headers: :any,
|
2015-10-07 22:08:37 -04:00
|
|
|
methods: :any,
|
2015-01-23 15:33:20 -05:00
|
|
|
expose: ['Link']
|
2013-12-05 03:29:45 -05:00
|
|
|
end
|
|
|
|
end
|
2014-08-29 05:38:21 -04:00
|
|
|
|
2016-05-30 17:13:42 -04:00
|
|
|
# Use Redis caching across all environments
|
|
|
|
redis_config_hash = Gitlab::Redis.params
|
2016-04-07 09:42:07 -04:00
|
|
|
redis_config_hash[:namespace] = Gitlab::Redis::CACHE_NAMESPACE
|
2015-07-15 07:53:40 -04:00
|
|
|
redis_config_hash[:expires_in] = 2.weeks # Cache should not grow forever
|
2016-09-22 02:38:35 -04:00
|
|
|
if Sidekiq.server? # threaded context
|
|
|
|
redis_config_hash[:pool_size] = Sidekiq.options[:concurrency] + 5
|
|
|
|
redis_config_hash[:pool_timeout] = 1
|
|
|
|
end
|
2014-08-29 05:38:21 -04:00
|
|
|
config.cache_store = :redis_store, redis_config_hash
|
2014-11-18 10:15:51 -05:00
|
|
|
|
2015-11-26 08:48:01 -05:00
|
|
|
config.active_record.raise_in_transactional_callbacks = true
|
|
|
|
|
|
|
|
config.active_job.queue_adapter = :sidekiq
|
|
|
|
|
2014-11-18 10:15:51 -05:00
|
|
|
# This is needed for gitlab-shell
|
|
|
|
ENV['GITLAB_PATH_OUTSIDE_HOOK'] = ENV['PATH']
|
2016-03-04 15:00:11 -05:00
|
|
|
|
|
|
|
config.generators do |g|
|
|
|
|
g.factory_girl false
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|