-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.cfg.sample
101 lines (86 loc) · 3.14 KB
/
config.cfg.sample
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
## User configuration options for GroupServer and the systems it relies
## on.
##
[config]
##
## GroupServer Site
##
# The host name and the port for the new GroupServer site. This could be
# the virtual domain you will have configured in Apache or Nginx. If you
# will not be using another web server, this will the same port as
# zope_host below.
host = gstest
port = 8080
# The GroupServer users that are created when the Example Site is
# set up. The site has an administrator and normal user by default. Note
# the two email addresses must be different as they are used as the
# identifiers for the two people. They must exist, as they will be
# tested during the install process.
admin_email = [email protected]
admin_password = gsadminpass
user_email = [email protected]
user_password = gsuserpass
# The support email address for the Example Site. This must exist, it
# will be tested during installation.
support_email = [email protected]
# The email server through which email will be sent. This is used for
# outgoing email only. The incoming email server may be different, and
# this setting will not affect that.
smtp_host = localhost
##
## Zope
##
# This is the hostname and port that Zope will listen on. Zope is the
# application framework that GroupServer is written in. If you are not
# using Nginx, Apache or another webserver in front of GroupServer, you
# should configure zope_host to listen on an external IP address, and
# update your firewall.
#
# Beware of IPv6 lookups causing issues with your configuration!
#
zope_host = localhost
zope_port = 8080
# The user-name and password for the default Zope Management Interface
# (ZMI) admin user. The password can be changed after GroupServer has
# been installed. This is *different* to the GroupServer admin user and
# password below.
zope_admin = admin
zope_password = admin
##
## Database Storage
##
# The passwords that will be used to connect to the PostgreSQL database for
# storing GroupServer and Zope data. If PostgreSQL is installed on the local
# machine, these will be set by the install script. More advanced setups
# require manual setup.
pgsql_password = ChangeMeToSomethingElse
relstorage_password = ChangeMeToSomethingElse
##
## Advanced Configuration Options
##
# These are reasonably likely to be correct. If you have non-standard
# email or database port or authentication configuration, please update
# these. It is worth reviewing these, even if only to know what they are
# set to.
##
# STMP connection informaton
smtp_port = 25
smtp_user =
smtp_password =
# The details of the PostgreSQL databases that will be used to store
# GroupServer and Zope data. Note that the install script will create
# these if, and only if, the database is running on the local machine.
# If it is not, manual setup is required.
#
# Note: If PostgreSQL 8 *and* PostgreSQL 9 are installed the ports below
# should be set to 5433
pgsql_admin = postgres
pgsql_host = localhost
pgsql_port = 5432
pgsql_user = gsadmin
pgsql_dbname = groupserver
relstorage_host = localhost
relstorage_port = 5432
relstorage_user = gszodbadmin
relstorage_dbname = groupserverzodb
## End of user configuration options