You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 7, 2018. It is now read-only.
Implement this style of configuration, which sets the defaults used by the actual Reel::Server constructor... meaning they can be overridden directly at instantiation, if desired:
#de Can be either `Reel.configure` or `Ree::Server.configure`Reel.configure{ |config|
config.host='0.0.0.0'config.port=8888}Reel.configure(host: '0.0.0.0',port: 8888)
The text was updated successfully, but these errors were encountered:
The implementation you posted is more of a shortcut for Server.new which hard-codes HTTP
We need to be able to select which server type, so server: or config.server with either a class passed in or a symbol ( :HTTP, :HTTPS, or :UNIX for example )
If the block approach is used, class variables need to be set, and those values need to be used for the default initialization of the server.
Implement this style of configuration, which sets the defaults used by the actual
Reel::Server
constructor... meaning they can be overridden directly at instantiation, if desired:The text was updated successfully, but these errors were encountered: