Can a cesium map work on an Apache HTTP server instead of node.js?

I have an Apache HTTP server that handles all my requests for a Ruby on Rails project. We are thinking of adding a cesium map component. I am wondering if I can run Cesium on an Apache HTTP server instead of setting up a node.js environment?

+4
source share
2 answers

Yes, cesium is fully client-side and can be served by any HTML server.

+5
source

This works for me in JBoss. All I did was take the contents of the ZIP file and drop them into the JBoss deployment area in the Cesium.war directory.

Works like a champion ...

+1
source

Source: https://habr.com/ru/post/1525299/


All Articles