2014-02-06 06:29:34 +00:00
|
|
|
[server:main]
|
|
|
|
use = egg:Paste#http
|
|
|
|
host = 0.0.0.0
|
|
|
|
port = 5000
|
|
|
|
|
|
|
|
[app:main]
|
|
|
|
use = egg:syncserver
|
|
|
|
|
|
|
|
[syncserver]
|
2014-04-30 05:50:21 +00:00
|
|
|
# This must be edited to point to the public URL of your server,
|
|
|
|
# i.e. the URL as seen by Firefox.
|
2014-02-06 06:29:34 +00:00
|
|
|
public_url = http://localhost:5000/
|
|
|
|
|
|
|
|
# This defines the database in which to store all server data.
|
|
|
|
#sqluri = sqlite:////tmp/syncserver.db
|
|
|
|
|
|
|
|
# This is a secret key used for signing authentication tokens.
|
2014-04-30 05:50:21 +00:00
|
|
|
# It should be long and randomly-generated.
|
|
|
|
# The following command will give a suitable value on *nix systems:
|
|
|
|
#
|
2014-04-30 05:55:51 +00:00
|
|
|
# head -c 20 /dev/urandom | sha1sum
|
2014-04-30 05:50:21 +00:00
|
|
|
#
|
|
|
|
# If not specified then the server will generate a temporary one at startup.
|
2014-02-06 06:29:34 +00:00
|
|
|
#secret = INSERT_SECRET_KEY_HERE
|