I am trying to do promising work in my meteor application hosted on a module with SSL. I have Meteor 1.0, iron: router 1.0, spiderable and node phantomjs package
Everything works on localhost. But as soon as I deploy to the module, at first I had an error
spiderable: phantomjs failed: null
Then I added the following environment variable to the module panel:
METEOR_PKG_SPIDERABLE_PHANTOMJS_ARGS = --ssl-protocol=tlsv1 --ignore-ssl-errors=yes --debug=true
This still does not work, and debugging displays several times (for example, a cycle after an error) the following message in the module console:
2014-12-03T17:01:00 [DEBUG] WebPage - evaluateJavaScript "(function() { return (function () { if (typeof Meteor === 'undefined' || Meteor.status === undefined || !Meteor.status().connected) { return false; } if (typeof Package === 'undefined' || Package.spiderable === undefined || Package.spiderable.Spiderable === undefined || !Package.spiderable.Spiderable._initialSubscriptionsStarted) { return false; } Tracker.flush(); return DDP._allSubscriptionsReady(); })(); })()" 2014-12-03T17:01:00 [DEBUG] WebPage - evaluateJavaScript result QVariant(bool, false)
If anyone knows how to solve this or managed to deploy the meteor project on modulus.io with SSL and spiderable. Let me know how to do it :)
Thank you so much!
ssl meteor modulus
Jean-noël
source share