EC2亚马逊在两个不同的子域上运行两个服务器

时间:2015-05-15 11:50:02

标签: node.js amazon-ec2

您好我目前正在服务器上的端口80上运行我的应用程序 比如 'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', 'viewPath' => '@common/mail', //'useFileTransport' => true, 'useFileTransport' => false, //set this property to false to send mails to real email addresses //comment the following array to send mail using php's mail function 'transport' => [ 'class' => 'Swift_SmtpTransport', 'host' => 'smtp.gmail.com', 'username' => 'your_mail@gmail.com', 'password' => 'your_password', 'port' => '587', 'encryption' => 'tls', ],

现在我想在同一http://example.com端口上的另一个域子域上运行另一个应用程序,例如80

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以通过更新CNAME DNS记录来实现这一点。例如

http://example.com     <=> 123.123.123.123 // server 1 here
http://abc.example.com <=> 123.123.123.124 // server 1 or server 2 here

使用哪个端口号

并不重要