23 lines
526 B
Plaintext
23 lines
526 B
Plaintext
## Variables for the install script
|
|
# All have to be filled in, except if they have a default
|
|
|
|
# Interface for serving the page: ':80' or 'domain.name'
|
|
# Defaults to ':80'
|
|
interface=''
|
|
|
|
# Timezone for local user
|
|
tz='UTC'
|
|
|
|
# Username/email/password (multiple users allowed)
|
|
# Must have at least one Username/password
|
|
declare -A umail upw
|
|
u='username' umail[$u]='email' upw[$u]='password'
|
|
|
|
# Variables for mailer
|
|
user='(smtp login)'
|
|
password='(smtp password)'
|
|
# Defaults to 'mail.gmail.com'
|
|
smtp=''
|
|
# Defaults to: '587'
|
|
port=''
|