How to build a Jira-like SaaS site?

天涯浪子 提交于 2019-12-09 03:54:12

问题


Anyone know how to build a single-tenant SaaS application like Jira, Wordpress.com, etc.. where every customer gets a separate site, but hosted on the company servers?

In the web seems to be a lot of information about multi-tenant SaaS applications and how to host them in sites like Heroku, Openshift, etc... but no much is said about single-tenant applications.

I've been reading a lot but I need that someone point me in the right direction.


回答1:


Looks like you have got enough information about multi-tenant SaaS applications. The single-tenant SaaS application referred to in the question is also termed hosting in the cloud.
Usually the underlying implementation of the site is the same as multitenant SaaS, ie., those seperate sites could be served by a multitenant SaaS application. Or they could be separate deployments in the cloud.

Most of what you are asking is achieved using the wildcard subdomain names in the dns. Check with your devops if you dont have information about the dns records for your domain and how to set up a subdomain. A load balancer is usually used in combination. Here are some useful links

http://codex.wordpress.org/Configuring_Wildcard_Subdomains

http://httpd.apache.org/docs/2.2/vhosts/examples.html



来源:https://stackoverflow.com/questions/25728119/how-to-build-a-jira-like-saas-site

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!