This repository was archived by the owner on Jun 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmaximus.default.conf
More file actions
117 lines (105 loc) · 2.66 KB
/
Copy pathmaximus.default.conf
File metadata and controls
117 lines (105 loc) · 2.66 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Application name
name Maximus
# Google Analytics tracking id, e.g. UA-0000000-0
google_analytics_id ""
# Salt for encryption
salt secret_key
# Client information
client_version 1.1.2
# Database connection settings
<Model::DB>
<connect_info>
# maximus is the database name
dsn dbi:mysql:maximus
# MySQL user
user maximus
# Password for given user
password demo
# Quote field names
quote_names 1
# Force strict mode (which includes ANSI)
on_connect_call set_strict_mode
# Enable PIPES_AS_CONCAT to use || instead of CONCAT()
on_connect_do SET sql_mode = CONCAT('PIPES_AS_CONCAT,', @@sql_mode)
</connect_info>
# PostgreSQL
#<connect_info>
#dsn dbi:Pg:dbname=maximus;host=localhost
#user maximus
#password demo
#quote_names 1
#quote_char "
#</connect_info>
# SQLite
#<connect_info>
#dsn dbi:SQLite:dbname=maximus.sqlite
#on_connect_call use_foreign_keys
#on_connect_do ""
#</connect_info>
</Model::DB>
# Settings for Jobserver
<Gearman>
# Add another job_servers <ip> line to add more Gearman servers
job_servers 127.0.0.1
</Gearman>
# Settings for sending emails
<View::Email::Template>
<sender>
mailer SMTP
<mailer_args>
host smtp.example.com
port 25
sasl_username info@example.com
sasl_password my-secret-password
timeout 10
</mailer_args>
</sender>
</View::Email::Template>
<email>
from Maximus <no-reply@maximus.htbaa.com>
</email>
# Announcer settings
<Model::Announcer>
<drivers>
<Twitter>
consumer_key xxxx
consumer_secret xxxx
access_token xxxx
access_token_secret xxxx
</Twitter>
<Log4perl>
</Log4perl>
<Database>
model DB::Announcement
</Database>
</drivers>
</Model::Announcer>
<require_ssl>
disabled 1
</require_ssl>
# These keys are for testing purposes only (works on localhost only)
<recaptcha>
pub_key 6LcsbAAAAAAAAPDSlBaVGXjMo1kJHwUiHzO2TDze
priv_key 6LcsbAAAAAAAANQQGqwsnkrTd7QTGRBKQQZwBH-L
<options>
theme white
</options>
</recaptcha>
<Transport>
driver FileSystem
<options>
base_url http://localhost:3000/static/archives
destination root/static/archives
</options>
</Transport>
#<Transport>
#driver FTP
#<options>
#base_url http://localhost:3000/static/archives
#destination root/static/archives
#hostname localhost
#port 21
#username user
#password pass
#</options>
#</Transport>