I have installed both Apache and Meteor behind NginX through reverse-proxy (on an Ubuntu server). Apache is mapped directly as baseURL (www.mydomain.com/) and Meteor is mapp
Why are you including scripts and styles in your with Meteor? Anything included within your meteor project directory, be it js, html or css, will get bundled up and served to the client without being included in your HTML with
and
.
If you must include things in your , why not just use the absolute path including the subfolder?
...
Forgive me if I'm misunderstanding the problem.