-
Notifications
You must be signed in to change notification settings - Fork 0
/
example-config.properties
54 lines (45 loc) · 1.39 KB
/
example-config.properties
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
#
# Database connection properties
# Set up to use HSQL in-memory and reset the DB on every startup;
# obviously for production you should be using e.g. MySQL (the MySQL driver is bundled for ease)
#
#jdbc.driver=org.hsqldb.jdbcDriver
#jdbc.url=jdbc:hsqldb:mem:test-db;create=true
#jdbc.username=sa
#jdbc.password=
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/statik
jdbc.username=statik
jdbc.password=statik
#
# fileBase: a directory containing multiple sub-dirs, each of which represents a website and is named as a domain
#
# <fileBase>
# |- www.example.com
# |- www.foobar.com
#
# fileBase can be absolute, or relative; if relative, it's rooted at the current working directory.
#
#fileBase=/Users/rorygibson/work/bn/dabanda/sites
fileBase=/Library/WebServer/Documents
#
# Specifies the filename of the index file used for *all* websites supported by this Statik instance
#
welcomeFile=index.html
#
# Location of uploaded file storage (NB must be on shared disk if load-balancing Statik instances)
#
uploadStorageLocation=/tmp/uploads
#
# Specifies the filename of the 404 error page used for *all* websites supported by this Statik instance
#
404page=/404.html
#
# Domain name to redirect to in order to login (SSO)
# If you only have one domain, put it here!
#
authDomain=localhost
#
# Notifier service for language changes etc
#
notifierUrl=http://localhost:3001/ext/occur