Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sabnzbdplus(1) [debian man page]

SABNZBDPLUS(1)						      General Commands Manual						    SABNZBDPLUS(1)

NAME
sabnzbdplus - a web-based binary newsgrabber with nzb support. SYNOPSIS
sabnzbdplus [-f <configfile>] [[...other options]] DESCRIPTION
SABnzbd+ is a web-based binary newsgrabber written in Python, with support for the popular nzb file format. It takes one or more nzb files as input and from there on does all the work, including fetching files, checking file integrity, and unpacking. Configuration can be done via the web interface or in the configuration file. Multiple servers are supported, as well as secure (ssl) connections, ipv6, scheduling, pausing and resuming downloads, queue manipulation, rss feeds, newzbin and nzbmatrix integration, automatic sorting, a download history, email notifications, and custom post-processing scripts. An extensive API allows third party applications to interact with the program. USAGE
To run the program execute sabnzbdplus, then point your favorite web browser to http://<host>:<port>. The host and port settings default to localhost and 8080, respectively; the default port for https connections is 9090. New nzb files may be queued for download by putting them in the watched directory, adding them via the web interface, or from rss feeds. OPTIONS
-h --help Show a list of options -f --config-file <filename> Location of the configuration file -s --server <host:port> Hostname or ip address and port to listen on -t --templates <template> Primary interface templates -2 --template2 <template> Secondary templates, available at http://<host>:<port>/sabnzbd/m -l --logging <0..2> Log level (0 for least, 2 for most) -w --weblogging <0..2> Cherrypy (built-in web-server) logging (0 for off, 1 for on, 2 for file-only) -b --browser <0..1> Automatically launch browser (0 for off, 1 for on) -d --daemon Fork daemon process (run the program in the background) --pid <path> Create a pid file in the listed folder (full path) --force Discard web-port timeout -v --version Show version -c --clean Remove queue, cache and logs -p --pause Start paused --https <port> Port to listen on for https connections --repair Add orphaned jobs from the incomplete folder to the queue --repair-all Try to reconstruct the queue from the incomplete folder with full data reconstruction --log-all Log all article handling (for developers) --new Run a new instance of SABnzbd, instead of starting the UI of the existing instance FILES
~/.sabnzbd/ Default location for the program's configuration file and internal administration ~/Downloads/ Default location for downloaded files /etc/default/sabnzbdplus Configuration file for the init.d script AUTHOR
This man page was written by JCF Ploemen <linux@jp.pp.ru> and is licensed under the GNU GPL, version 2 or later. SEE ALSO
Project wiki with extensive user documentation: http://wiki.sabnzbd.org SABnzbd+ homepage and support forums: http://sabnzbd.org Version 0.6.3 June 2011 SABNZBDPLUS(1)

Check Out this Related Man Page

GIT-INSTAWEB(1) 						    Git Manual							   GIT-INSTAWEB(1)

NAME
git-instaweb - Instantly browse your working repository in gitweb SYNOPSIS
git instaweb [--local] [--httpd=<httpd>] [--port=<port>] [--browser=<browser>] git instaweb [--start] [--stop] [--restart] DESCRIPTION
A simple script to set up gitweb and a web server for browsing the local repository. OPTIONS
-l, --local Only bind the web server to the local IP (127.0.0.1). -d, --httpd The HTTP daemon command-line that will be executed. Command-line options may be specified here, and the configuration file will be added at the end of the command-line. Currently apache2, lighttpd, mongoose, plackup and webrick are supported. (Default: lighttpd) -m, --module-path The module path (only needed if httpd is Apache). (Default: /usr/lib/apache2/modules) -p, --port The port number to bind the httpd to. (Default: 1234) -b, --browser The web browser that should be used to view the gitweb page. This will be passed to the git web--browse helper script along with the URL of the gitweb instance. See git-web--browse(1) for more information about this. If the script fails, the URL will be printed to stdout. start, --start Start the httpd instance and exit. Regenerate configuration files as necessary for spawning a new instance. stop, --stop Stop the httpd instance and exit. This does not generate any of the configuration files for spawning a new instance, nor does it close the browser. restart, --restart Restart the httpd instance and exit. Regenerate configuration files as necessary for spawning a new instance. CONFIGURATION
You may specify configuration in your .git/config [instaweb] local = true httpd = apache2 -f port = 4321 browser = konqueror modulePath = /usr/lib/apache2/modules If the configuration variable instaweb.browser is not set, web.browser will be used instead if it is defined. See git-web--browse(1) for more information about this. SEE ALSO
gitweb(1) GIT
Part of the git(1) suite Git 2.17.1 10/05/2018 GIT-INSTAWEB(1)
Man Page