Sha256: 1c65dd4f2ab3ff8c1e1097fdcda7393b9616ed85bf2a05afed72beee469c937d

Contents?: true

Size: 1003 Bytes

Versions: 1

Compression:

Stored size: 1003 Bytes

Contents

# Quartzflow config file.

# IP address that the web server should bind to
set :bind, "0.0.0.0"

# TCP port that the web server should bind to
set :port, 4444

# Directory where downloaded torrent data will be stored
set :basedir, "download" 

# Directory where .torrent files and .info files will be stored.
set :metadir, "meta"

# TCP port used for torrents
set :torrent_port, 9997

# SQLite database used for storing settings and state
set :db_file, "db/quartz.sqlite"

# Where to log torrent protocol messages
set :torrent_log, "log/torrent.log"

# On which day of the month should monthly usage tracking reset
set :monthly_usage_reset_day, 5

# Torrent Queueing settings. 
# Max number of active torrents is the max number of torrents that can be running at once.
# Max number of incomplete torrents is a subset of the max active torrents, and describes
# the max number of torrents that can be running that are not uploading.
set :torrent_queue_max_active, 10
set :torrent_queue_max_incomplete, 5

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
quartz_flow-0.0.4 etc/quartz.rb