mirror of
https://github.com/YunoHost-Apps/ffsync_ynh.git
synced 2024-09-03 18:26:38 +02:00
29 lines
823 B
INI
29 lines
823 B
INI
|
[server:main]
|
||
|
use = egg:Paste#http
|
||
|
host = 0.0.0.0
|
||
|
port = 5000
|
||
|
|
||
|
[app:main]
|
||
|
use = egg:syncserver
|
||
|
|
||
|
[syncserver]
|
||
|
# This must be edited to point to the public URL of your server,
|
||
|
# i.e. the URL as seen by Firefox.
|
||
|
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.
|
||
|
# It should be long and randomly-generated.
|
||
|
# The following command will give a suitable value on *nix systems:
|
||
|
#
|
||
|
# head -c 20 /dev/urandom | sha1sum
|
||
|
#
|
||
|
# If not specified then the server will generate a temporary one at startup.
|
||
|
#secret = INSERT_SECRET_KEY_HERE
|
||
|
|
||
|
# Set this to "false" to disable new-user signups on the server.
|
||
|
# Only request by existing accounts will be honoured.
|
||
|
# allow_new_users = false
|