Home  >  Q&A  >  body text

Can one Alibaba Cloud server deploy two Javaweb projects? The domain names of the two projects are different

There is only one Alibaba Cloud server
There are two projects
Two domain names

我想大声告诉你我想大声告诉你2713 days ago988

reply all(5)I'll reply

  • 为情所困

    为情所困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.

    reply
    0
  • 黄舟

    黄舟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

    reply
    0
  • 怪我咯

    怪我咯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

    reply
    0
  • PHP中文网

    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!

    reply
    0
  • 为情所困

    为情所困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就是项目名(放在webappsbelow).

    reply
    0
  • Cancelreply