config_custom.example.rb
69 lines
| 2.3 KiB
| text/x-ruby
|
RubyLexer
/ config / config_custom.example.rb
|
r10 | # redMine - project management software | ||
# Copyright (C) 2006 Jean-Philippe Lang | ||||
# | ||||
# This program is free software; you can redistribute it and/or | ||||
# modify it under the terms of the GNU General Public License | ||||
# as published by the Free Software Foundation; either version 2 | ||||
# of the License, or (at your option) any later version. | ||||
# | ||||
# This program 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 | ||||
# GNU General Public License for more details. | ||||
# | ||||
# You should have received a copy of the GNU General Public License | ||||
# along with this program; if not, write to the Free Software | ||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
# To set your own configuration, rename this file to config_custom.rb | ||||
# and edit parameters below | ||||
# Don't forget to restart the application after any change. | ||||
# Application host name | ||||
# Used to provide absolute links in mail notifications | ||||
# $RDM_HOST_NAME = "somenet.foo" | ||||
# File storage path | ||||
# Directory used to store uploaded files | ||||
# #{RAILS_ROOT} represents application's home directory | ||||
# $RDM_STORAGE_PATH = "#{RAILS_ROOT}/files" | ||||
# Set $RDM_LOGIN_REQUIRED to true if you want to force users to login | ||||
# to access any page of the application | ||||
# $RDM_LOGIN_REQUIRED = false | ||||
# Uncomment to disable user self-registration | ||||
# $RDM_SELF_REGISTRATION = false | ||||
|
r42 | # Default langage ('en', 'es', 'de', 'fr' are available) | ||
|
r10 | # $RDM_DEFAULT_LANG = 'en' | ||
|
r36 | # Email adress used to send mail notifications | ||
# $RDM_MAIL_FROM = "redmine@somenet.foo" | ||||
|
r10 | # Page title | ||
# $RDM_HEADER_TITLE = "Title" | ||||
# Page sub-title | ||||
# $RDM_HEADER_SUBTITLE = "Sub title" | ||||
# Welcome page title | ||||
# $RDM_WELCOME_TITLE = "Welcome" | ||||
# Welcome page text | ||||
# $RDM_WELCOME_TEXT = "" | ||||
# Signature displayed in footer | ||||
# Email adresses will be automatically displayed as a mailto link | ||||
# $RDM_FOOTER_SIG = "admin@somenet.foo" | ||||
|
r42 | |||
# Textile formatting (only available if RedCloth is installed) | ||||
# Textile formatting is automativaly disabled if RedCloth is not available | ||||
# Set to true to manually disable. | ||||
# $RDM_TEXTILE_DISABLED = true | ||||
|
r128 | |||
# Maximum size for attachments (in bytes) | ||||
# Default to 5 MB | ||||
# $RDM_ATTACHMENT_MAX_SIZE = 5*1024*1024 | ||||