Apache2 子域名虚拟主机指南

Apache2 子域名虚拟主机指南

我正在尝试设置一个子域名,用于为与我的主域名不同的网站提供服务。我正在使用 Debian Stretch。

www.domain.name > my website
application.domain.name > separate application

我阅读了有关虚拟主机的信息,但它似乎只指定完全不同的域名。有什么有意义的区别吗?我应该如何配置我的 A 记录?我对网站托管非常陌生,任何建议都值得感激。

答案1

无论第二个网站是在同一个域中还是完全不同的域中,都是一样的。

答案2

直接来自 apache 示例页面

# Ensure that Apache listens on port 80
Listen 80
<VirtualHost *:80>
    DocumentRoot "/www/example1"
    ServerName www.example.com

    # Other directives here
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot "/www/example2"
    ServerName www.example.org

    # Other directives here
</VirtualHost>

参考 ->https://httpd.apache.org/docs/2.4/vhosts/examples.html

相关内容