Sign inSign up

touch4it/log.io-ng-server

By touch4it

Updated about 9 years ago

Log.io-ng-server Docker Container

Image
4

1.0K

touch4it/log.io-ng-server repository overview

Log.io-ng-server Docker Container

Contains

  • log.io-ng

Example

docker run -d -p 28777:28777 -p 28778:28778 -v /path/to/config:/home/logio/.log.io --name logio-server touch4it/logio-ng-server
What you need to provide
Logserver configuration

Filename log_server.conf at /path/to/config.

Example:

exports.config = {
  host: '0.0.0.0',
  port: 28777
}
Webserver configuration

Filename web_server.conf at /path/to/config.

Example:

exports.config = {
  host: '0.0.0.0',
  port: 28778,

  /*
  // Enable HTTP Basic Authentication
  auth: {
    user: "admin",
    pass: "1234"
  },
  */

  /*
  // Enable HTTPS/SSL
  ssl: {
    key: '/path/to/privatekey.pem',
    cert: '/path/to/certificate.pem'
  },
  */

  /*
  // Restrict access to websocket (socket.io)
  // Uses socket.io 'origins' syntax
  restrictSocket: '*:*',
  */

  /*
  // Restrict access to http server (express)
  restrictHTTP: [
    "192.168.29.39",
    "10.0.*"
  ]
  */

}
What to expect

Port 28777 is for receiving logs, 28778 is delivering the webinterface.

Tag summary

Content type

Image

Digest

Size

268.6 MB

Last updated

about 9 years ago

docker pull touch4it/log.io-ng-server