I am running the pre-built docker version of ethercalc on lubuntu 15.04. I need apache for other tasks. So I have these in my /etc/apache2/conf-enabled/ethercalc.conf :
ProxyPass /ecalc http://localhost:8000
ProxyPassReverse /ecalc http://localhost:8000
References to http://localhost/ecalc/ are redirected to http://localhost:8000 behind the scenes. This works fine most of the time, including .html or .csv suffixes for export/download. However it fails with _new and with /view suffix (for read-only mode). Can this be fixed by changing some code from absolute path to relative path? Thanks!