Documentation/Tutorials/Red5DeveloperTips/SystemProps

System Properties

These system properties are available to you within Red5:

  • red5.root - This is the location from which Red5 was launched or is installed
  • red5.lib_root - The common library directory
  • red5.config_root - The configuration directory
  • red5.plugins_root - The plug-ins directory
  • red5.webapp.root - The web applications directory

In code you may access them like so:

String prop = System.getProperty("red5.root");