2011-10-08 17:36:38 -04:00
|
|
|
require File.expand_path('../boot', __FILE__)
|
|
|
|
|
|
|
|
require 'rails/all'
|
2013-12-05 09:26:34 -05:00
|
|
|
require 'devise'
|
2014-10-01 05:56:23 -04:00
|
|
|
I18n.config.enforce_available_locales = false
|
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
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
# Custom directories with classes and modules you want to be autoloadable.
|
2014-10-09 03:47:47 -04:00
|
|
|
config.autoload_paths.push(*%W(#{config.root}/lib
|
|
|
|
#{config.root}/app/models/hooks
|
|
|
|
#{config.root}/app/models/concerns
|
|
|
|
#{config.root}/app/models/project_services
|
|
|
|
#{config.root}/app/models/members))
|
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.
|
2015-05-09 16:52:46 -04:00
|
|
|
config.filter_parameters.push(:password, :password_confirmation, :private_token, :otp_attempt)
|
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
|
2014-02-06 11:56:47 -05:00
|
|
|
config.assets.paths << Emoji.images_path
|
|
|
|
config.assets.precompile << "emoji/*.png"
|
2014-04-02 08:42:35 -04:00
|
|
|
config.assets.precompile << "print.css"
|
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)
|
|
|
|
|
2014-05-13 11:59:08 -04:00
|
|
|
# Relative url support
|
2013-08-19 16:20:32 -04:00
|
|
|
# Uncomment and customize the last line to run in a non-root path
|
2013-11-29 02:57:45 -05:00
|
|
|
# WARNING: We recommend creating a FQDN to host GitLab in a root path instead of this.
|
2014-05-13 11:59:08 -04:00
|
|
|
# Note that following settings need to be changed for this to work.
|
2013-08-19 16:20:32 -04:00
|
|
|
# 1) In your application.rb file: config.relative_url_root = "/gitlab"
|
|
|
|
# 2) In your gitlab.yml file: relative_url_root: /gitlab
|
2013-09-29 13:46:02 -04:00
|
|
|
# 3) In your unicorn.rb: ENV['RAILS_RELATIVE_URL_ROOT'] = "/gitlab"
|
2013-11-06 05:14:48 -05:00
|
|
|
# 4) In ../gitlab-shell/config.yml: gitlab_url: "http://127.0.0.1/gitlab"
|
2014-05-13 11:59:08 -04:00
|
|
|
# 5) In lib/support/nginx/gitlab : do not use asset gzipping, remove block starting with "location ~ ^/(assets)/"
|
|
|
|
#
|
2013-11-06 05:14:48 -05:00
|
|
|
# To update the path, run: sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
|
2013-08-19 16:20:32 -04:00
|
|
|
#
|
|
|
|
# config.relative_url_root = "/gitlab"
|
2013-09-24 17:12:31 -04:00
|
|
|
|
2013-11-06 07:10:59 -05:00
|
|
|
config.middleware.use Rack::Attack
|
2013-12-05 03:29:45 -05:00
|
|
|
|
|
|
|
# Allow access to GitLab API from other domains
|
|
|
|
config.middleware.use Rack::Cors do
|
|
|
|
allow do
|
|
|
|
origins '*'
|
2015-01-23 15:33:20 -05:00
|
|
|
resource '/api/*',
|
|
|
|
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
|
|
|
|
|
|
|
# Use Redis caching across all environments
|
|
|
|
redis_config_file = Rails.root.join('config', 'resque.yml')
|
|
|
|
|
|
|
|
redis_url_string = if File.exists?(redis_config_file)
|
|
|
|
YAML.load_file(redis_config_file)[Rails.env]
|
|
|
|
else
|
|
|
|
"redis://localhost:6379"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Redis::Store does not handle Unix sockets well, so let's do it for them
|
|
|
|
redis_config_hash = Redis::Store::Factory.extract_host_options_from_uri(redis_url_string)
|
|
|
|
redis_uri = URI.parse(redis_url_string)
|
|
|
|
if redis_uri.scheme == 'unix'
|
|
|
|
redis_config_hash[:path] = redis_uri.path
|
|
|
|
end
|
|
|
|
|
|
|
|
redis_config_hash[:namespace] = 'cache:gitlab'
|
2015-07-15 07:53:40 -04:00
|
|
|
redis_config_hash[:expires_in] = 2.weeks # Cache should not grow forever
|
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']
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|