mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-04 09:19:29 +02:00
docs: add missing filetransfer config to v2.
This commit is contained in:
parent
3a8a5c30ef
commit
972d16031e
3 changed files with 120 additions and 101 deletions
|
@ -1,7 +1,22 @@
|
|||
|
||||
--legacy enable legacy mode (default true)
|
||||
|
||||
--logs save logs to file
|
||||
|
||||
--cert string path to the SSL cert used to secure the neko server
|
||||
--key string path to the SSL key used to secure the neko server
|
||||
--bind string address/port/socket to serve neko
|
||||
--proxy enable reverse proxy mode
|
||||
--static string path to neko client files to serve
|
||||
--path_prefix string path prefix for HTTP requests
|
||||
--cors strings list of allowed origins for CORS
|
||||
--locks strings resources, that will be locked when starting (control, login)
|
||||
--implicit_control if enabled members can gain control implicitly
|
||||
--control_protection control protection means, users can gain control only if at least one admin is in the room
|
||||
--heartbeat_interval int heartbeat interval in seconds (default 120)
|
||||
--file_transfer_enabled enable file transfer feature
|
||||
--file_transfer_path string path to use for file transfer
|
||||
|
||||
--display string XDisplay to capture
|
||||
--video_codec string video codec to be used
|
||||
--av1 DEPRECATED: use video_codec
|
||||
|
@ -12,6 +27,7 @@
|
|||
--video_bitrate int video bitrate in kbit/s
|
||||
--hwenc string use hardware accelerated encoding
|
||||
--max_fps int maximum fps delivered via WebRTC, 0 is for no maximum
|
||||
|
||||
--device string audio device to capture
|
||||
--audio_codec string audio codec to be used
|
||||
--g722 DEPRECATED: use audio_codec
|
||||
|
@ -20,6 +36,7 @@
|
|||
--pcmu DEPRECATED: use audio_codec
|
||||
--audio string audio codec parameters to use for streaming
|
||||
--audio_bitrate int audio bitrate in kbit/s
|
||||
|
||||
--broadcast_pipeline string custom gst pipeline used for broadcasting, strings {url} {device} {display} will be replaced
|
||||
--broadcast_url string a default default URL for broadcast streams, can be disabled/changed later by admins in the GUI
|
||||
--broadcast_autostart automatically start broadcasting when neko starts and broadcast_url is set
|
||||
|
@ -29,24 +46,11 @@
|
|||
--password string password for connecting to stream
|
||||
--password_admin string admin password for connecting to stream
|
||||
|
||||
--cert string path to the SSL cert used to secure the neko server
|
||||
--key string path to the SSL key used to secure the neko server
|
||||
--bind string address/port/socket to serve neko
|
||||
--proxy enable reverse proxy mode
|
||||
--static string path to neko client files to serve
|
||||
--path_prefix string path prefix for HTTP requests
|
||||
--cors strings list of allowed origins for CORS
|
||||
|
||||
--locks strings resources, that will be locked when starting (control, login)
|
||||
--implicit_control if enabled members can gain control implicitly
|
||||
--control_protection control protection means, users can gain control only if at least one admin is in the room
|
||||
--heartbeat_interval int heartbeat interval in seconds (default 120)
|
||||
|
||||
--nat1to1 strings sets a list of external IP addresses of 1:1 (D)NAT and a candidate type for which the external IP
|
||||
--nat1to1 strings sets a list of external IP addresses of 1:1 (D)NAT and a candidate type for which the external IP address is used
|
||||
--tcpmux int single TCP mux port for all peers
|
||||
--udpmux int single UDP mux port for all peers
|
||||
--icelite configures whether or not the ice agent should be a lite agent
|
||||
--iceserver strings describes a single STUN and TURN server that can be used by the ICEAgent to establish a connection
|
||||
--iceservers string describes a single STUN and TURN server that can be used by the ICEAgent to establish a connection
|
||||
--iceserver strings describes a single STUN and TURN server that can be used by the ICEAgent to establish a connection with a peer
|
||||
--iceservers string describes a single STUN and TURN server that can be used by the ICEAgent to establish a connection with a peer
|
||||
--ipfetch string automatically fetch IP address from given URL when nat1to1 is not present
|
||||
--epr string limits the pool of ephemeral ports that ICE UDP connections can allocate from
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue