一个 Apache 安装上有两个站点

一个 Apache 安装上有两个站点

我已经在我的 Admin Cloud 实例上安装了 Observium,我还需要将 Bugzilla 添加到此服务器上。

我已经成功安装了 Bugzilla - /var/www/html/bugzilla Observium - /opt/observium

我已经像这样设置了conf:

/etc/apache2/sites-available/bugzilla

 <VirtualHost *:8080>
     ServerName bugzilla
     ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/bugzilla
<Directory />
       AddHandler cgi-script .cgi
       Options +ExecCGI
       DirectoryIndex index.cgi index.html
       AllowOverride All
</Directory>
ErrorLog  ${APACHE_LOG_DIR}/error.log
LogLevel warn
CustomLog  ${APACHE_LOG_DIR}/access.log combined
ServerSignature On

/etc/apache2/sites-available/observium.conf

 <VirtualHost *:80>
ServerName observium
ServerAdmin webmaster@localhost
DocumentRoot /opt/observium/html
<Directory />
        Options FollowSymLinks
        AllowOverride None
</Directory>
<Directory /opt/observium/html/>
       Options Indexes FollowSymLinks MultiViews
       AllowOverride All
       Require all granted
</Directory>
ErrorLog  ${APACHE_LOG_DIR}/error.log
LogLevel warn
CustomLog  ${APACHE_LOG_DIR}/access.log combined
ServerSignature On

并在 ports.conf 中添加 Listen 80 和 Listen 8080

但唯一可用的网站是 obsevium。

有没有错过什么????

谢谢 :)

答案1

您可以通过在主机文件中添加主机条目来添加多个站点

/etc/hosts

答案2

您需要启用新配置,然后重新加载 apache。我建议将您的 bugzilla 重命名为 bugzilla.conf。您可以复制默认的并重命名。

sudo a2ensite bugzilla

或者

sudo a2ensite bugzilla.conf

重新加载 Apache

sudo service apache2 reload

相关内容