Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note

This documentation is for Release 6.3. For documentation on previous releases, please select from the options below.

  • Release 1.x version of this page: v.81
  • Release 2.x version of this page: v.87.
  • Release 3.0-3.1 version of this page: v.111.
  • Release 3.2 version of this page: v.116.
  • Release 4.0 version of this page: v.143.
  • Release 5.x version of this page: v.163.
  • Release 6.0 version of this page: v.177

...

See documentation for your version of MySQL Server for detailed syntax (http://dev.mysql.com/doc/refman/5.1/en/create-database.html )

Media Streaming Server

Warning

Red5 is no longer the default streaming server for Avalon 6.3. With the upgrade to MediaElementjs 4, we now rely completely on HLS.

...

Code Block
development:
  url: http://matterhorn_system_account:CHANGE_ME@localhost:8080/

...

Info
titleAvalon config file

Avalon settings now live in /var/www/avalon/config/settings.yml

...

. The default values should be sufficient to start with.

They can be selectively overwritten by creating

...

settings/<environment>.yml, or by using environment variables. Consult

...

the config gem doc

...

 to understand how it works, or Avalon's documentation

...

 to customize this file for your installation.


Anchor
secrets
secrets
Change the secrets.yml file:

...

Code Block
groupadd -r dropbox
useradd -r avalondrop
usermod -G dropbox avalon
mkdir -p /varsrv/avalon/dropbox
chown avalondrop:dropbox /varsrv/avalon/dropbox
chmod 2775 /varsrv/avalon/dropbox

Edit /etc/ssh/sshd_config

Code Block
# override default of no subsystems
Subsystem sftp internal-sftp
 
# Example of overriding settings on a per-user basis
#Match User anoncvs
# X11Forwarding no
# AllowTcpForwarding no
# ForceCommand cvs server
Match Group dropbox
ChrootDirectory /varsrv/avalon
X11Forwarding no
AllowTcpForwarding no
ForceCommand internal-sftp

...