我正在通过 IP 地址访问的服务器上远程工作(亚马逊 ec2)
我禁用了默认站点
a2dissite default
创建了一个新目录来托管网站并创建了新的站点-可用于链接它
a2ensite newsite
一切正常。
现在我想以同样的方式添加第二个站点
VirtualHost *:80>
#alias mysite "/var/www/site2/" #this doesnt seem to do anything
ServerAdmin webmaster@localhost
DocumentRoot /var/www/site2/
<Directory /var/www/site2/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
我的结论是,似乎首先启用的站点似乎是被使用的站点。如果 url 是 IP,是否有添加第二个站点?似乎 apache 区分了传递给它的服务器名称,但由于我只使用 IP 我不能这样做。
理想情况下,我希望它设置如下
http://ip/site1 points to /var/www/site1
和
http://ip/site2 points to /var/www/site2
建议?谢谢-