404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.116.85.79: ~ $
# Port on which the server is listening. You must select a different
# port from your standard HTTP web server if it is running on the same
# computer.
HTTPPort 8090

# Address on which the server is bound. Only useful if you have
# several network interfaces.
HTTPBindAddress 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.
MaxClients 1000

# This the maximum amount of kbit/sec that you are prepared to
# consume when streaming to clients.
MaxBandwidth 1000

# Access log file (uses standard Apache log file format)
# '-' is the standard output.
CustomLog -

##################################################################
# Definition of the live feeds. Each live feed contains one video
# and/or audio sequence coming from an ffmpeg encoder or another
# ffserver. This sequence may be encoded simultaneously with several
# codecs at several resolutions.

<Feed feed1.ffm>

# You must use 'ffmpeg' to send a live feed to ffserver. In this
# example, you can type:
#
# ffmpeg http://localhost:8090/feed1.ffm

# ffserver can also do time shifting. It means that it can stream any
# previously recorded live stream. The request should contain:
# "http://xxxx?date=[YYYY-MM-DDT][[HH:]MM:]SS[.m...]".You must specify
# a path where the feed is stored on disk. You also specify the
# maximum size of the feed, where zero means unlimited. Default:
# File=/tmp/feed_name.ffm FileMaxSize=5M
File /tmp/feed1.ffm
FileMaxSize 200K

# You could specify
# ReadOnlyFile /saved/specialvideo.ffm
# This marks the file as readonly and it will not be deleted or updated.

# Specify launch in order to start ffmpeg automatically.
# First ffmpeg must be defined with an appropriate path if needed,
# after that options can follow, but avoid adding the http:// field
#Launch ffmpeg

# Only allow connections from localhost to the feed.
ACL allow 127.0.0.1

</Feed>


##################################################################
# Now you can define each stream which will be generated from the
# original audio and video stream. Each format has a filename (here
# 'test1.mpg'). FFServer will send this stream when answering a
# request containing this filename.

<Stream test1.mpg>

# coming from live feed 'feed1'
Feed feed1.ffm

# Format of the stream : you can choose among:
# mpeg       : MPEG-1 multiplexed video and audio
# mpegvideo  : only MPEG-1 video
# mp2        : MPEG-2 audio (use AudioCodec to select layer 2 and 3 codec)
# ogg        : Ogg format (Vorbis audio codec)
# rm         : RealNetworks-compatible stream. Multiplexed audio and video.
# ra         : RealNetworks-compatible stream. Audio only.
# mpjpeg     : Multipart JPEG (works with Netscape without any plugin)
# jpeg       : Generate a single JPEG image.
# mjpeg      : Generate a M-JPEG stream.
# asf        : ASF compatible streaming (Windows Media Player format).
# swf        : Macromedia Flash compatible stream
# avi        : AVI format (MPEG-4 video, MPEG audio sound)
Format mpeg

# Bitrate for the audio stream. Codecs usually support only a few
# different bitrates.
AudioBitRate 32

# Number of audio channels: 1 = mono, 2 = stereo
AudioChannels 1

# Sampling frequency for audio. When using low bitrates, you should
# lower this frequency to 22050 or 11025. The supported frequencies
# depend on the selected audio codec.
AudioSampleRate 44100

# Bitrate for the video stream
VideoBitRate 64

# Ratecontrol buffer size
VideoBufferSize 40

# Number of frames per second
VideoFrameRate 3

# Size of the video frame: WxH (default: 160x128)
# The following abbreviations are defined: sqcif, qcif, cif, 4cif, qqvga,
# qvga, vga, svga, xga, uxga, qxga, sxga, qsxga, hsxga, wvga, wxga, wsxga,
# wuxga, woxga, wqsxga, wquxga, whsxga, whuxga, cga, ega, hd480, hd720,
# hd1080
VideoSize 160x128

# Transmit only intra frames (useful for low bitrates, but kills frame rate).
#VideoIntraOnly

# If non-intra only, an intra frame is transmitted every VideoGopSize
# frames. Video synchronization can only begin at an intra frame.
VideoGopSize 12

# More MPEG-4 parameters
# VideoHighQuality
# Video4MotionVector

# Choose your codecs:
#AudioCodec mp2
#VideoCodec mpeg1video

# Suppress audio
#NoAudio

# Suppress video
#NoVideo

#VideoQMin 3
#VideoQMax 31

# Set this to the number of seconds backwards in time to start. Note that
# most players will buffer 5-10 seconds of video, and also you need to allow
# for a keyframe to appear in the data stream.
#Preroll 15

# ACL:

# You can allow ranges of addresses (or single addresses)
#ACL ALLOW <first address> <last address>

# You can deny ranges of addresses (or single addresses)
#ACL DENY <first address> <last address>

# 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.

</Stream>


##################################################################
# Example streams


# Multipart JPEG

#<Stream test.mjpg>
#Feed feed1.ffm
#Format mpjpeg
#VideoFrameRate 2
#VideoIntraOnly
#NoAudio
#Strict -1
#</Stream>


# Single JPEG

#<Stream test.jpg>
#Feed feed1.ffm
#Format jpeg
#VideoFrameRate 2
#VideoIntraOnly
##VideoSize 352x240
#NoAudio
#Strict -1
#</Stream>


# Flash

#<Stream test.swf>
#Feed feed1.ffm
#Format swf
#VideoFrameRate 2
#VideoIntraOnly
#NoAudio
#</Stream>


# ASF compatible

<Stream test.asf>
Feed feed1.ffm
Format asf
VideoFrameRate 15
VideoSize 352x240
VideoBitRate 256
VideoBufferSize 40
VideoGopSize 30
AudioBitRate 64
StartSendOnKey
</Stream>


# MP3 audio

#<Stream test.mp3>
#Feed feed1.ffm
#Format mp2
#AudioCodec mp3
#AudioBitRate 64
#AudioChannels 1
#AudioSampleRate 44100
#NoVideo
#</Stream>


# Ogg Vorbis audio

#<Stream test.ogg>
#Feed feed1.ffm
#Metadata title "Stream title"
#AudioBitRate 64
#AudioChannels 2
#AudioSampleRate 44100
#NoVideo
#</Stream>


# Real with audio only at 32 kbits

#<Stream test.ra>
#Feed feed1.ffm
#Format rm
#AudioBitRate 32
#NoVideo
#NoAudio
#</Stream>


# Real with audio and video at 64 kbits

#<Stream test.rm>
#Feed feed1.ffm
#Format rm
#AudioBitRate 32
#VideoBitRate 128
#VideoFrameRate 25
#VideoGopSize 25
#NoAudio
#</Stream>


##################################################################
# A stream coming from a file: you only need to set the input
# filename and optionally a new format. Supported conversions:
#    AVI -> ASF

#<Stream file.rm>
#File "/usr/local/httpd/htdocs/tlive.rm"
#NoAudio
#</Stream>

#<Stream file.asf>
#File "/usr/local/httpd/htdocs/test.asf"
#NoAudio
#Metadata author "Me"
#Metadata copyright "Super MegaCorp"
#Metadata title "Test stream from disk"
#Metadata comment "Test comment"
#</Stream>


##################################################################
# RTSP examples
#
# You can access this stream with the RTSP URL:
#   rtsp://localhost:5454/test1-rtsp.mpg
#
# A non-standard RTSP redirector is also created. Its URL is:
#   http://localhost:8090/test1-rtsp.rtsp

#<Stream test1-rtsp.mpg>
#Format rtp
#File "/usr/local/httpd/htdocs/test1.mpg"
#</Stream>


# Transcode an incoming live feed to another live feed,
# using libx264 and video presets

#<Stream live.h264>
#Format rtp
#Feed feed1.ffm
#VideoCodec libx264
#VideoFrameRate 24
#VideoBitRate 100
#VideoSize 480x272
#AVPresetVideo default
#AVPresetVideo baseline
#AVOptionVideo flags +global_header
#
#AudioCodec aac
#AudioBitRate 32
#AudioChannels 2
#AudioSampleRate 22050
#AVOptionAudio flags +global_header
#</Stream>

##################################################################
# SDP/multicast examples
#
# If you want to send your stream in multicast, you must set the
# multicast address with MulticastAddress. The port and the TTL can
# also be set.
#
# An SDP file is automatically generated by ffserver by adding the
# 'sdp' extension to the stream name (here
# http://localhost:8090/test1-sdp.sdp). You should usually give this
# file to your player to play the stream.
#
# The 'NoLoop' option can be used to avoid looping when the stream is
# terminated.

#<Stream test1-sdp.mpg>
#Format rtp
#File "/usr/local/httpd/htdocs/test1.mpg"
#MulticastAddress 224.124.0.1
#MulticastPort 5000
#MulticastTTL 16
#NoLoop
#</Stream>


##################################################################
# Special streams

# Server status

<Stream stat.html>
Format status

# Only allow local people to get the status
ACL allow localhost
ACL allow 192.168.0.0 192.168.255.255

#FaviconURL http://pond1.gladstonefamily.net:8080/favicon.ico
</Stream>


# Redirect index.html to the appropriate site

<Redirect index.html>
URL http://www.ffmpeg.org/
</Redirect>

Filemanager

Name Type Size Permission Actions
ImageMagick-6 Folder 0755
NetworkManager Folder 0755
UPower Folder 0755
X11 Folder 0755
acpi Folder 0755
alternatives Folder 0755
apache2 Folder 0755
apm Folder 0755
apparmor Folder 0755
apparmor.d Folder 0755
apport Folder 0755
apt Folder 0755
bash_completion.d Folder 0755
binfmt.d Folder 0755
bonobo-activation Folder 0755
byobu Folder 0755
ca-certificates Folder 0755
calendar Folder 0755
chatscripts Folder 2750
cloud Folder 0755
cni Folder 0700
console-setup Folder 0755
cron.d Folder 0755
cron.daily Folder 0755
cron.hourly Folder 0755
cron.monthly Folder 0755
cron.weekly Folder 0755
cryptsetup-initramfs Folder 0755
datadog-agent Folder 0755
dbconfig-common Folder 0755
dbus-1 Folder 0755
debsig Folder 0755
default Folder 0755
depmod.d Folder 0755
dhcp Folder 0755
dictionaries-common Folder 0755
dnsmasq.d Folder 0755
dnsmasq.d-available Folder 0755
docker Folder 0755
dpkg Folder 0755
emacs Folder 0755
fonts Folder 0755
gconf Folder 0755
ghostscript Folder 0755
gitlab-runner Folder 0700
glvnd Folder 0755
gnome Folder 0755
gnome-vfs-2.0 Folder 0755
groff Folder 0755
grub.d Folder 0755
gss Folder 0755
gtk-2.0 Folder 0755
gtk-3.0 Folder 0755
ifplugd Folder 0755
init Folder 0755
init.d Folder 0755
initramfs-tools Folder 0755
iproute2 Folder 0755
iptables Folder 0755
iscsi Folder 0755
kernel Folder 0755
landscape Folder 0775
ld.so.conf.d Folder 0755
ldap Folder 0755
letsencrypt Folder 0755
libblockdev Folder 0755
libnl-3 Folder 0755
libpaper.d Folder 0755
lighttpd Folder 0755
logcheck Folder 0755
logrotate.d Folder 0755
lvm Folder 0755
mdadm Folder 0755
modprobe.d Folder 0755
modules-load.d Folder 0755
mysql Folder 0755
netplan Folder 0755
network Folder 0755
networkd-dispatcher Folder 0755
newt Folder 0755
openal Folder 0755
openvpn Folder 0755
opt Folder 0755
pam.d Folder 0755
perl Folder 0755
php Folder 0755
php7 Folder 0755
php7 Folder 0755
phpmyadmin Folder 0755
pm Folder 0755
polkit-1 Folder 0755
pollinate Folder 0755
ppp Folder 0755
profile.d Folder 0755
pulse Folder 0755
python Folder 0755
python2.7 Folder 0755
python3 Folder 0755
python3.6 Folder 0755
rc0.d Folder 0755
rc1.d Folder 0755
rc2.d Folder 0755
rc3.d Folder 0755
rc4.d Folder 0755
rc5.d Folder 0755
rc6.d Folder 0755
rcS.d Folder 0755
rsyslog.d Folder 0755
security Folder 0755
selinux Folder 0755
sensors.d Folder 0755
skel Folder 0755
sos Folder 0755
sound Folder 0755
ssh Folder 0755
ssl Folder 0755
sudoers.d Folder 0750
sysctl.d Folder 0755
systemd Folder 0755
terminfo Folder 0755
tmpfiles.d Folder 0755
tor Folder 0755
ubuntu-advantage Folder 0755
udev Folder 0755
udisks2 Folder 0755
ufw Folder 0755
update-manager Folder 0755
update-motd.d Folder 0775
update-notifier Folder 0755
usb_modeswitch.d Folder 0755
vim Folder 0755
vmware-tools Folder 0755
wpa_supplicant Folder 0755
xdg Folder 0755
xfce4 Folder 0755
.pwd.lock File 0 B 0600
adduser.conf File 2.96 KB 0644
at.deny File 144 B 0640
bash.bashrc File 2.26 KB 0644
bash_completion File 45 B 0644
bindresvport.blacklist File 367 B 0644
ca-certificates.conf File 7.63 KB 0644
ca-certificates.conf.dpkg-old File 6.93 KB 0644
crontab File 722 B 0644
crypttab File 54 B 0644
danted.conf File 505 B 0644
danted.conf.bak File 7.94 KB 0644
danted.conf.dpkg-old File 645 B 0644
debconf.conf File 2.9 KB 0644
debian_version File 11 B 0644
deluser.conf File 604 B 0644
ec2_version File 35 B 0644
environment File 106 B 0644
ethertypes File 1.29 KB 0644
ffserver.conf File 8.89 KB 0644
fstab File 82 B 0644
fuse.conf File 280 B 0644
gai.conf File 2.52 KB 0644
grafana-agent-back.yaml File 3.57 KB 0644
grafana-agent.yaml File 3.01 KB 0644
grafana-agent.yaml.save File 3.56 KB 0644
group File 996 B 0644
group- File 982 B 0644
gshadow File 827 B 0640
gshadow- File 817 B 0640
hddtemp.db File 6.59 KB 0644
hdparm.conf File 4.75 KB 0644
host.conf File 92 B 0644
hostname File 17 B 0644
hosts File 597 B 0644
hosts.allow File 411 B 0644
hosts.deny File 711 B 0644
inputrc File 1.71 KB 0644
issue File 26 B 0644
issue.net File 19 B 0644
kernel-img.conf File 110 B 0644
ld.so.cache File 68.43 KB 0644
ld.so.conf File 34 B 0644
legal File 267 B 0644
libaudit.conf File 191 B 0644
locale.alias File 2.92 KB 0644
locale.gen File 9.17 KB 0644
localtime File 127 B 0644
login.defs File 10.3 KB 0644
logrotate.conf File 703 B 0644
lsb-release File 105 B 0644
ltrace.conf File 14.52 KB 0644
machine-id File 33 B 0444
magic File 111 B 0644
magic.mime File 111 B 0644
mailcap File 7.17 KB 0644
mailcap.order File 449 B 0644
manpath.config File 5.05 KB 0644
mime.types File 23.73 KB 0644
mke2fs.conf File 812 B 0644
modules File 195 B 0644
mtab File 0 B 0444
nanorc File 8.84 KB 0644
networks File 91 B 0644
nsswitch.conf File 513 B 0644
os-release File 386 B 0644
overlayroot.conf File 6.76 KB 0644
overlayroot.local.conf File 112 B 0644
pam.conf File 552 B 0644
papersize File 3 B 0644
passwd File 2.35 KB 0644
passwd- File 2.34 KB 0644
popularity-contest.conf File 0 B 0644
profile File 581 B 0644
protocols File 2.86 KB 0644
resolv.conf File 715 B 0644
rmt File 268 B 0755
rpc File 887 B 0644
rsyslog.conf File 1.33 KB 0644
screenrc File 3.58 KB 0644
securetty File 4.04 KB 0644
sensors3.conf File 10.13 KB 0644
services File 18.73 KB 0644
shadow File 1.89 KB 0640
shadow- File 1.77 KB 0640
shells File 103 B 0644
sos.conf File 100 B 0644
subgid File 196 B 0644
subgid- File 177 B 0644
subuid File 196 B 0644
subuid- File 177 B 0644
sudoers File 755 B 0440
sysctl.conf File 2.62 KB 0644
timezone File 8 B 0644
ucf.conf File 1.23 KB 0644
updatedb.conf File 403 B 0644
usb_modeswitch.conf File 1.49 KB 0644
vdpau_wrapper.cfg File 51 B 0644
vtrgb File 158 B 0644
wgetrc File 4.83 KB 0644
zsh_command_not_found File 477 B 0644