node.js - Deploying meteor app to intranet -


i needing deploying meteor app made onto our works intranet server. bundled app make node app , installed node,npm,and mongodb onto intranet server. when go through setting environment variables with

export port=3000 export mongo_url=mongodb://localhost:27017/databasename export root_url=http://localhost:3000 npm install node bundle/main.js 

i blank web page. in apache set virtual host in /etc/httpd/conf/httpd.conf such as

<virtualhost *:80>     servername servername.dcn     proxyrequests off     proxypreservehost on     <proxy *>         order deny,allow         allow     </proxy>     proxypass /timesheet http://localhost:3000/ < /virtualhost> 

any ideas why i'm getting plain blank page instead of app? advice.


Comments

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -