I created a nodejs virtual machine instance on google cloud (compute engine). I also created 3 mongodb instances on the compute engine. Now I pushed my local application to the google cloud repository. How do I link the app.js file to this server so it starts running the script and serving the files. I already changed the A record of my domain that I registered with godaddy so it's external ip is the same as that of the nodejs server I am running but all I am getting is this page.
相关问题
- MongoDB can not create unique sparse index (duplic
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fs
- Why do Dataflow steps not start?
- Spring Data MongoDB - lazy access to some fields
- google-drive can't get push notifications
相关文章
- node连接远程oracle报错
- mongodb有没有什么办法禁止读取数据的时候进行缓存
- mongodb-aggregate聚合查询分组后如何获得多字段
- mongodb error: how do I make sure that your journa
- How can make folder with Firebase Cloud Functions
- How to track MongoDB requests from a console appli
- @angular-cli install fails with deprecated request
- How do I create a persistent volume claim with Rea
Bitnami developer here.
You need to copy your files to the remote repository, create the configuration files and after that you have to include that configuration in the configuration of Apache to serve the application. It looks like you have done most of the work, but there may be an error in one of the steps. This guide will help you to configure your application in order to access it properly.
https://wiki.bitnami.com/Applications/Bitnami_Custom_Node.js_Application
I hope it helps.
Jota