2

What is the clean way to deploy an opa application ?

Can it be mixed with an apache server, to redirect specific pages to the opa application ?

Thanks

user984846
  • 263
  • 2
  • 8

1 Answers1

2

Yes you can deploy your Opa application behind Apache, nginx, haproxy, ..., as you want.

I advise you to deactivate any kind of buffering in front of opa, as Opa client/server messages works asynchronously. For example, with nginx you should set:

proxy_buffering off

Moreover, you may have a look at this thread about virtual hosting: http://forum.opalang.org/#0_6

Cédrics
  • 1,974
  • 11
  • 13