There is only one Alibaba Cloud server
There are two projects
Two domain names
为情所困2017-05-17 10:00:32
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.
黄舟2017-05-17 10:00:32
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
怪我咯2017-05-17 10:00:32
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
PHP中文网2017-05-17 10:00:32
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!
为情所困2017-05-17 10:00:32
Use tomcat
的话,可以在server.xml
内添加Host
, like
<Host name="domain" appBase="webapps" unpackWARs="true" autoDeploy="true">
<Context path="path" docBase="package"/>
</Host>
domain
域名,path
访问路径, package
就是项目名(放在webapps
below).