-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmaster.conf.sample
More file actions
91 lines (66 loc) · 2.05 KB
/
master.conf.sample
File metadata and controls
91 lines (66 loc) · 2.05 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
CONTRACTOR_HOST = 'http://contractor:8080'
CONTRACTOR_PROXY = None
GIT_LOCAL_PATH = '/var/www/git'
GIT_HOST = 'http://git/'
GITHUB_API_HOST = 'https://github/api/v3'
GITHUB_HOST = 'https://github/'
GITHUB_USER = 'mcp' # if using auth token, set the username to the token and set GITHUB_PASS to None
GITHUB_PASS = 'mcp'
GITHUB_PROXY = None
# to set a http_proxy for git use `git config --system http.proxy <http proxy>`
PACKRAT_HOST = 'http://packrat'
PACKRAT_PROXY = None
PACKRAT_USERNAME = 'mcp'
PACKRAT_PSK = 'mcp'
HARDWARE_PROFILE = 'mcp-resource'
CONFIGURE_PRIORITY_NORMAL = 50
CONFIGURE_PRIORITY_PREALLOC = 60
SELFREGISTER_USER_GROUP = 'mcp_user'
SITE_NAME = None
SLACK_API_TOKEN = False
SLACK_CHANNEL = '#mcp'
SLACK_PROXY = None
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'w4hhv%e7yq8(-$u8w3e2w5_^4q749(*mb-#-j!1ms*w9s5f@x='
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
TEMPLATE_DEBUG = True
TEMPLATE_DIRS = (
)
MCP_HOST = 'http://mcp'
MCP_PROXY = None
# Application definition
INSTALLED_APPS = (
'mcp.Processor',
'mcp.Project',
'mcp.Resource',
'mcp.User',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages'
)
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'mcp.urls'
WSGI_APPLICATION = 'mcp.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': '/opt/mcp/db.sqlite3',
}
}
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True