Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
312d075e
Commit
312d075e
authored
11 years ago
by
Stefano Sabatini
Browse files
Options
Downloads
Patches
Plain Diff
doc/ffserver: move ACL syntax section before the global option sections
parent
4e39962f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/ffserver.texi
+30
-30
30 additions, 30 deletions
doc/ffserver.texi
with
30 additions
and
30 deletions
doc/ffserver.texi
+
30
−
30
View file @
312d075e
...
@@ -226,6 +226,36 @@ A line starting with @code{#} is ignored and treated as a comment.
...
@@ -226,6 +226,36 @@ A line starting with @code{#} is ignored and treated as a comment.
Name of options and sections are case-insensitive.
Name of options and sections are case-insensitive.
@section ACL syntax
An ACL (Access Control List) specifies the address which are allowed
to access a given stream, or to write a given feed.
It accepts the folling forms
@itemize
@item
Allow/deny access to @var
{
address
}
.
@example
ACL ALLOW <address>
ACL DENY <address>
@end example
@item
Allow/deny access to ranges of addresses from @var
{
first
_
address
}
to
@var
{
last
_
address
}
.
@example
ACL ALLOW <first
_
address> <last
_
address>
ACL DENY <first
_
address> <last
_
address>
@end example
@end itemize
You can repeat the ACL allow/deny as often as you like. It is on a per
stream basis. The first match defines the action. If there are no matches,
then the default is the inverse of the last ACL statement.
Thus 'ACL allow localhost' only allows access from localhost.
'ACL deny 1.0.0.0 1.255.255.255' would deny the whole of network 1 and
allow everybody else.
@section Global options
@section Global options
@table @option
@table @option
@item Port @var
{
port
_
number
}
@item Port @var
{
port
_
number
}
...
@@ -277,36 +307,6 @@ Set no-daemon mode. This option is currently ignored since now
...
@@ -277,36 +307,6 @@ Set no-daemon mode. This option is currently ignored since now
@end table
@end table
@section ACL syntax
An ACL (Access Control List) specifies the address which are allowed
to access a given stream, or to write a given feed.
It accepts the folling forms
@itemize
@item
Allow/deny access to @var
{
address
}
.
@example
ACL ALLOW <address>
ACL DENY <address>
@end example
@item
Allow/deny access to ranges of addresses from @var
{
first
_
address
}
to
@var
{
last
_
address
}
.
@example
ACL ALLOW <first
_
address> <last
_
address>
ACL DENY <first
_
address> <last
_
address>
@end example
@end itemize
You can repeat the ACL allow/deny as often as you like. It is on a per
stream basis. The first match defines the action. If there are no matches,
then the default is the inverse of the last ACL statement.
Thus 'ACL allow localhost' only allows access from localhost.
'ACL deny 1.0.0.0 1.255.255.255' would deny the whole of network 1 and
allow everybody else.
@section Feed section
@section Feed section
A Feed section defines a feed provided to @command
{
ffserver
}
.
A Feed section defines a feed provided to @command
{
ffserver
}
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment