简体   繁体   中英

Custom domain for Node.js apps

Are there any PaaS services available for Node.js where you can add a custom domain to your Node app?

For exampe, nodejitsu, nodester, ...

Heroku does, not sure about nodejitsu or nodester...

http://devcenter.heroku.com/articles/custom-domains

nodejitsu support customized domain. See https://www.nodejitsu.com/documentation/features/dns/

Here are more easier steps to set a custom domain on nodejitsu

  • Set the CNAME record point to jit.su
  • Add domains property into package.json

     "domains": [ "myawesomedomain.com", "www.myawesomedomain.com" ], 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM