You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
433 B
20 lines
433 B
[server:main]
|
|
use = egg:gunicorn
|
|
host = 0.0.0.0
|
|
port = 5000
|
|
workers = 1
|
|
timeout = 30
|
|
|
|
[app:main]
|
|
use = egg:SyncServer
|
|
|
|
[syncserver]
|
|
# This must be edited to point to the public URL of your server.
|
|
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.
|
|
#secret = INSERT_SECRET_KEY_HERE
|