I've run meteor build to create my bundle, uploaded to the server, it runs fine, however the .css and .js paths are wrong, as it's using the root url. I need to run this from within a /project folder. Again it's running, but 404 on the files as they're not prefixed with /project . eg. http://domain.com/65d054cb90ff094804072528d222178ddbf625e22.js?meteor_js_resource=true 404 (Not Found) needs to be http://domain.com/project/65d054cb90ff094804072528d222178ddbf625e22.js?meteor_js_resource=true I've tried using ROOT_URL=http://domain.com/project node main.js , that gives an unknown path error, i've also tried using Meteor.absoluteUrl('project', {}); in conjuntion with rooturl but again, no avail. Any of you fine people have any ideas? :) Thanks! PS. It's running on an apache server with ProxyPass, if that's of relevance. Solved You could instruct your apache to redirect those calls with a ProxyPassMatch , such as: ProxyP...
I am trying to create my first index using python and I keep getting a 404 index not found exception. Here is the current code: es = Elasticsearch([{'host': 'host_url', 'port': 443, 'use_ssl': True, 'timeout': 300}]) if es.indices.exists('test_logs'): es.indices.delete(index = 'test_logs') request_body = { 'settings': { 'number_of_shards': 2, 'number_of_relicas': 2 }, 'mappings': { 'logs': { 'properties': { 'date': { 'index': 'not_analyzed', 'type': 'date' }, 'time': { 'index': 'not_analyzed', 'type': 'time' }, 'request': { 'index': 'not_analyzed', 'type': 'string' }, 'status': { 'index': 'not_analyzed', 'type': ...