簡體   English   中英

Apache 指向錯誤的 vhost conf 文件

[英]Apache points to wrong vhost conf file

我在 Ubuntu 18 上有一個新的 VPS。只安裝了 PHP 和 Apache。 只創建了一個虛擬主機配置:

<VirtualHost *:80>
  ServerName vp123.ovh.net
  DocumentRoot /var/www/app
</VirtualHost>

在 apache realod 之后,域指向默認文件夾/var/www/html而不是我的/var/www/app

000-default.conf 是默認值:

<VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html

        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

apache2ctl -S 輸出:

VirtualHost configuration:
*:80                   is a NameVirtualHost
         default server vp123.ovh.net (/etc/apache2/sites-enabled/000-default.conf:1)
         port 80 namevhost vp123.ovh.net (/etc/apache2/sites-enabled/000-default.conf:1)
         port 80 namevhost vp123.ovh.net (/etc/apache2/sites-enabled/vp123.ovh.net.conf:1)

ServerRoot: "/etc/apache2"
Main DocumentRoot: "/var/www/html"
Main ErrorLog: "/var/log/apache2/error.log"
Mutex default: dir="/var/run/apache2/" mechanism=default
Mutex mpm-accept: using_defaults
Mutex watchdog-callback: using_defaults
PidFile: "/var/run/apache2/apache2.pid"
Define: DUMP_VHOSTS
Define: DUMP_RUN_CFG
User: name="www-data" id=33
Group: name="www-data" id=33

將新域指向此服務器時 - 完美無缺。 但是這個“默認域”總是指向默認文件夾。 禁用 000-default.conf 有幫助,但我不想這樣做。

Apache 按照文檔中的描述選擇虛擬主機。

考慮到 vhost 選擇過程,您的選擇是:

  1. 禁用默認的 vHost,你不需要它。
  2. 真的。 為什么要保留它?
  3. 將默認的 vHost 聲明更改為<VirtualHost *> 因此,將另一個 vHost 設為針對端口 80 的請求的默認值。
  4. 將您的服務器 IP 地址添加到您的 vhost 聲明中。 ( <VirtualHost 1.2.3.4:80> ) 然后,對於針對該 IP 地址的請求,它將優先於默認的 vhost *:80 請注意,對您服務器的其他 IP 的其他請求仍將由*:80 -vHost 提供服務。
  5. 在默認虛擬主機中設置DocumentRoot /var/www/app 這將要求您每次在多個 vHost 中進行配置更改,從而增加出錯的機會。

000-default.conf中定義的虛擬主機沒有ServerName指令,因此它從其父容器(在本例中為主服務器設置)繼承值,我認為此類指令也將vp123.ovh.net作為值。 因此 Apache 認為第一個虛擬主機匹配。

應該在每個<VirtualHost>塊內指定一個ServerName 如果不存在,則將繼承“主”服務器配置中的ServerName

由於您想在其他地方使用該名稱,因此可能的解決方案是設置一個不會干擾的顯式值,例如:

<VirtualHost *:80>
  ServerName localhost
  DocumentRoot /var/www/html
</VirtualHost>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM