Changes between Version 3 and Version 4 of Internal/OMF-Note


Ignore:
Timestamp:
Mar 24, 2010, 2:36:04 PM (14 years ago)
Author:
Olivera Tosic
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/OMF-Note

    v3 v4  
    11When installing omg-aggmgr note the following:
    22
    3 1.In ogs.rb add variable that represents root directory of the application
     31. In ogs.rb add variable that represents root directory of the application
    44{{{
    55DEF_VAR_PATH ="/usr/share/omf-aggmgr-5.2/omf-aggmgr"
     
    1010cfg.merge!('varPath' => "#{DEF_VAR_PATH}")
    1111}}}
     123. Add file handler to public_html directory (this is necessary for grid status front-end and for new scheduler developing)
     13{{{
     14  path = DEF_VAR_PATH + "/public_html"
     15  @@server.mount("/public_html/", HTTPServlet::FileHandler, path) {
     16    raise HTTPStatus::NotFound, "#{path} not found."
     17  }
     18}}}
     19