diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-09-03 18:16:34 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-09-03 18:16:34 +0000 |
commit | 1c9ff17920563fee8c0383d86f5bed6ed7dcf6d4 (patch) | |
tree | 7aa8e378bae93fd2e0c74641c5a7fe7bc90c5ba5 /doc/ffserver.conf | |
parent | dc76fe1348be142e5e4a85c5d2b0f6636e191498 (diff) | |
download | ffmpeg-1c9ff17920563fee8c0383d86f5bed6ed7dcf6d4.tar.gz |
Make the maximum number of simultaneous HTTP connections handled by
ffserver a configuration parameter. The name of the new parameter
introduced is MaxHTTPConnections.
Originally committed as revision 15182 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc/ffserver.conf')
-rw-r--r-- | doc/ffserver.conf | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/ffserver.conf b/doc/ffserver.conf index cae1a140c9..2fbfecd683 100644 --- a/doc/ffserver.conf +++ b/doc/ffserver.conf @@ -7,6 +7,11 @@ Port 8090 # several network interfaces. BindAddress 0.0.0.0 +# Number of simultaneous HTTP connections that can be handled. It has +# to be defined *before* the MaxClients parameter, since it defines the +# MaxClients maximum limit. +MaxHTTPConnections 2000 + # Number of simultaneous requests that can be handled. Since FFServer # is very fast, it is more likely that you will want to leave this high # and use MaxBandwidth, below. |