Guest User

Untitled

a guest
Jan 26th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.23 KB | None | 0 0
  1. ###########################################################################
  2. # fms.ini contains substitution variables for Flash Media Server #
  3. # configuration files. Lines beginning with '#' are considered comments. #
  4. # A substitution variable is in the form <name>=<value>. Everything up to #
  5. # the first '=' is considered the name of the substitution variable, and #
  6. # everything after the first '=' is considered the substitution value. If #
  7. # you want a substitution variable to have leading or trailing spaces, #
  8. # enclose the value around double quotes. For example, foo=" bar " #
  9. ###########################################################################
  10.  
  11. ###############################################################
  12. # This section contains configurable parameters in Server.xml #
  13. ###############################################################
  14.  
  15. # Имя пользователя системного администратора
  16. # Пример:
  17. # SERVER.ADMIN_USERNAME = foo
  18. #
  19. SERVER.ADMIN_USERNAME = ****
  20.  
  21. # Пароль для входа в панель администратора
  22. # Пример:
  23. # SERVER.ADMIN_PASSWORD = bar
  24. #
  25. SERVER.ADMIN_PASSWORD = *****
  26.  
  27. # IP address and port Flash Media Admin Server should listen on
  28. # For example:
  29. # SERVER.ADMINSERVER_HOSTPORT = :1111
  30. #
  31. SERVER.ADMINSERVER_HOSTPORT = :1111
  32.  
  33. # User id in which to run the process (Linux Only)
  34. # For example:
  35. # SERVER.PROCESS_UID = 500
  36. #
  37. SERVER.PROCESS_UID = 33
  38.  
  39. # Group id in which to run the process (Linux Only)
  40. # For example:
  41. # SERVER.PROCESS_GID = 500
  42. #
  43. SERVER.PROCESS_GID = 33
  44.  
  45. # License key for Flash Media Server
  46. # For example:
  47. # SERVER.LICENSEINFO = FMD200-XXXXX-XXXXX-XXXXX
  48. #
  49. SERVER.LICENSEINFO = *****
  50.  
  51. # LIVE_DIR denotes the full path of sample "Live" application's
  52. # folder for storing any live stream recorded by server.
  53. # For example:
  54. # LIVE_DIR = <FMS_Installation_Dir>\applications\live
  55. #
  56. LIVE_DIR = /opt/adobe/fms/applications/live
  57.  
  58. # VOD_COMMON_DIR denotes the full path of sample "VOD" application's
  59. # folder for storing onDemand and Progressive Download .flv/.mp3 files.
  60. # File stored in this folder can be streamed and are also PD-able.
  61. # Note : If you are using the default installation of Apache as a webserver,
  62. # and if you modify VOD_COMMON_DIR, please change the document root
  63. # accordingly in httpd.conf.
  64. # For example:
  65. # VOD_COMMON_DIR = <FMS_Installation_Dir>\webroot\vod
  66. #
  67. VOD_COMMON_DIR = /opt/adobe/fms/webroot/vod
  68. VOD2_COMMON_DIR = /opt/adobe/fms/webroot/vod2
  69.  
  70.  
  71.  
  72. # VOD_DIR denotes the full path of sample "VOD" application's
  73. # folder for storing onDemand only .flv/.mp3 files. Files stored in
  74. # this folder are not PD-able
  75. # For example:
  76. # VOD_DIR = <FMS_Installation_Dir>\applications\vod\media
  77. #
  78. VOD_DIR = /opt/adobe/fms/applications/vod/media
  79. VOD2_DIR = /opt/adobe/fms/applications/vod2/media
  80. DEV_DIR = /opt/adobe/fms/applications/vod3/media
  81.  
  82. # The maximum size of the FLV cache, in megabytes.
  83. # The default is 500MB.
  84. #
  85. SERVER.FLVCACHE_MAXSIZE=500
  86.  
  87. # Whether to start and stop the included HTTP server along
  88. # with FMS.
  89. #
  90. SERVER.HTTPD_ENABLED = true
  91.  
  92. ################################################################
  93. # This section contains configurable parameters in Adaptor.xml #
  94. ################################################################
  95.  
  96. # IP address and port(s) Flash Media Server should listen on
  97. # For example:
  98. # ADAPTOR.HOSTPORT = :1935,80
  99. #
  100. ADAPTOR.HOSTPORT = :1935,80
  101.  
  102. # IP (address and) port that Flash Media Server should proxy
  103. # unknown HTTP requests to. Leave empty to disable proxying.
  104. # With no address, specifies a localhost port.
  105. # For example:
  106. # HTTPPROXY.HOST = webfarm.example.com:80
  107. #
  108. HTTPPROXY.HOST = :8134
  109.  
  110. ##############################################################
  111. # This section contains configurable parameters in Vhost.xml #
  112. ##############################################################
  113.  
  114. # Application directory for the virtual host
  115. # For example:
  116. # VHOST.APPSDIR = C:\myapps
  117. #
  118. VHOST.APPSDIR = /opt/adobe/fms/applications
  119.  
  120. ####################################################################
  121. # This section contains configurable parameters in Application.xml #
  122. ####################################################################
  123.  
  124. # List of semi-colon delimited paths in which to search for script to load
  125. # For example:
  126. # APP.JS_SCRIPTLIBPATH = C:\scripts;C:\Program Files\Foo\scripts
  127. #
  128. APP.JS_SCRIPTLIBPATH = /opt/adobe/fms/scriptlib
  129.  
  130. ###############################################################
  131. # This section contains configurable parameters in Logger.xml #
  132. ###############################################################
  133.  
  134. LOGGER.LOGDIR =
  135.  
  136. ####################################################################
  137. # This section contains configurable parameters in Users.xml #
  138. ####################################################################
  139.  
  140. # Enable or disable using HTTP requests to execute admin commands.
  141. # Set to "true" to enable, otherwise it will be disabled. The
  142. # actual commands permitted for server admin and virtual host admin
  143. # users can be set in Users.xml.
  144.  
  145. USERS.HTTPCOMMAND_ALLOW = true
Add Comment
Please, Sign In to add comment