There is only one Alibaba Cloud server
There are two projects
Two domain names
Yes, as long as its server allows you to bind multiple domain names.
Using Apache/nginx for forwarding, you can deploy countless domain names.
I will only forward nginx.
1. Multiple projects can be deployed. The same nginx mentioned above is forwarded to tomcat with different local ports. 2. Domain name. It seems that an Alibaba Cloud server can only register one primary domain name. For other domain names, you can use subdomain names
Yes. Refer to configuring multiple web applications app1.domain.com and app2.domain.com on the same server. Similarly, you can also use completely different domain names
Alibaba Cloud's ECS (cloud server) can deploy multiple WEB projects, as long as both domain names point to this IP.
Install the WEB server (Apache, nginx, IIS) on the cloud host and forward it according to the source domain name!
Use tomcat
的話,可以在server.xml
內(nèi)添加Host
, like
<Host name="domain" appBase="webapps" unpackWARs="true" autoDeploy="true">
<Context path="path" docBase="package"/>
</Host>
domain
域名,path
訪問路徑, package
就是項(xiàng)目名(放在webapps
below).