/[meteor]/trunk/Meteor/Config.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/Meteor/Config.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 74 by dpavlin, Sat Mar 28 01:42:07 2009 UTC revision 75 by dpavlin, Sat Mar 28 17:20:35 2009 UTC
# Line 46  package Meteor::Config; Line 46  package Meteor::Config;
46          ChannelInfoTemplate             => '<script>ch("~name~", ~lastMsgID~);</script>\r\n',          ChannelInfoTemplate             => '<script>ch("~name~", ~lastMsgID~);</script>\r\n',
47    
48  'Configuration file location on disk (if any)',  'Configuration file location on disk (if any)',
49          ConfigFileLocation              => '/etc/meteord.conf',          ConfigFileLocation              => -e 'meteord.conf' ? 'meteord.conf' : '/etc/meteord.conf',
50    
51  'IP address for controller server (leave empty for all local addresses)',  'IP address for controller server (leave empty for all local addresses)',
52          ControllerIP                    => '',          ControllerIP                    => '',
# Line 109  package Meteor::Config; Line 109  package Meteor::Config;
109          SubscriberShutdownMsg   => '<script>eof();</script>\r\n',          SubscriberShutdownMsg   => '<script>eof();</script>\r\n',
110    
111  'An absolute filesystem path, to be used as the document root for Meteor\'s static file web server. If left empty, no documents will be served.',  'An absolute filesystem path, to be used as the document root for Meteor\'s static file web server. If left empty, no documents will be served.',
112          SubscriberDocumentRoot  => '/usr/local/meteor/public_html',          SubscriberDocumentRoot  => -e 'public_html' ? 'public_html' : '/usr/local/meteor/public_html',
113    
114  'Since Meteor is capable of serving static pages from a document root as well as streaming events to subscribers, this parameter is used to specify the URI at which the event server can be reached. If set to the root, Meteor will lose the ability to serve static pages.',  'Since Meteor is capable of serving static pages from a document root as well as streaming events to subscribers, this parameter is used to specify the URI at which the event server can be reached. If set to the root, Meteor will lose the ability to serve static pages.',
115          SubscriberDynamicPageAddress    => '/push',          SubscriberDynamicPageAddress    => '/push',
# Line 398  EOT Line 398  EOT
398  }  }
399    
400  1;  1;
 ############################################################################EOF  
401    ############################################################################EOF

Legend:
Removed from v.74  
changed lines
  Added in v.75

  ViewVC Help
Powered by ViewVC 1.1.26