Alternative application server for Bosun

126 Views Asked by At

As far as I understand, fiware-bosun uses Django server. However, is it possible to deploy it using a different application server (e.g. Apache)?

1

There are 1 best solutions below

0
Guille J On BEST ANSWER

Fiware-bosun is compound by two different modules:

  • Fiware-cloto: The Rule engine which uses Django server with WSGI.
  • Fiware-facts: the server to process the incoming facts, which uses Flask + Gevent with WSGI.

Both components are recommended to be deployed using gunicorn and you could also add supervisord and Nginx over this layer.

However, of course you can deploy the rule engine using any other application server that supports WSGI (e.g. Apache + mod_wsgi).