DocumentRoot 始终默认为 /var/www/html 且无法更改
DocumentRoot always defaults to /var/www/html and cannot change it
我已经使用 PuPHPet (Vagrant-Puppet-PHP) 设置了虚拟主机显然 PuPHPet 使用此配置为我创建了一个默认站点 10-default_vhost_80.conf
<VirtualHost *:80>
ServerName default
## Vhost docroot
DocumentRoot "/var/www/html"
## Directories, there should at least be a declaration for /var/www/html
<Directory "/var/www/html">
Options Indexes FollowSymlinks MultiViews
AllowOverride All
Require all granted
<FilesMatch "\.php$">
Require all granted
SetHandler proxy:fcgi://127.0.0.1:9000
</FilesMatch>
</Directory>
## Logging
ErrorLog "/var/log/apache2/default_vhost_80_error.log"
ServerSignature Off
CustomLog "/var/log/apache2/default_vhost_80_access.log" combined
</VirtualHost>
我已经创建了这个站点配置 site_dev.conf
<VirtualHost *:80>
ServerName site.dev
## Vhost docroot
DocumentRoot "/var/www/web"
## Directories, there should at least be a declaration for /var/www/web
<Directory "/var/www/web">
Options Indexes FollowSymlinks MultiViews
AllowOverride All
Require all granted
<FilesMatch "\.php$">
Require all granted
SetHandler proxy:fcgi://127.0.0.1:9000
</FilesMatch>
</Directory>
## Logging
ErrorLog "/var/log/apache2/av_0rjxvm6sfxhm_error.log"
ServerSignature Off
CustomLog "/var/log/apache2/av_0rjxvm6sfxhm_access.log" combined
## Server aliases
ServerAlias www.site.dev
## SetEnv/SetEnvIf for environment variables
SetEnv APP_ENV dev
</VirtualHost>
默认配置为apache2.conf
ServerName "local.puphpet"
ServerRoot "/etc/apache2"
PidFile ${APACHE_PID_FILE}
Timeout 120
KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimeout 15
User www-data
Group www-data
AccessFileName .htaccess
<FilesMatch "^\.ht">
Require all denied
</FilesMatch>
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
HostnameLookups Off
ErrorLog "/var/log/apache2/error.log"
LogLevel warn
EnableSendfile Off
#Listen 80
Include "/etc/apache2/mods-enabled/*.load"
Include "/etc/apache2/mods-enabled/*.conf"
Include "/etc/apache2/ports.conf"
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
IncludeOptional "/etc/apache2/conf.d/*.conf"
IncludeOptional "/etc/apache2/sites-enabled/*"
我已经禁用了 10-default_vhost_80
并重新加载了 apache,但是我的 DocumentRoot 仍然指向 /var/www/html/
我是不是遗漏了什么?
所以我所做的就是将 /var/www/html
变成符号 link 并指向 /var/www/web
。这同时解决了我的问题。
更新
我使用上面的解决方案发现了另一个问题,它影响了我的 xdebug
配置并且进程无法在 /var/www/web
中找到文件,因为它正在寻找符号 link /var/www/html
。所以
另一个解决方法是修改 10-default_vhost_80.conf
文件并手动将 /var/www/html
更改为 /var/www/web
并重新启动服务器。到目前为止一切顺利。
更新 2
因此,正确的解决方法是您需要确保 Directory Block
在 puphpet
配置器中填满,它会生成您在 yaml
文件中看到的 directories
部分以下。我认为这是由于对 apache 2.4
的更新,为什么需要这样做。
所以我得到了这个 config.yaml
av_s4zfpb2muecx:
servername: sandbox.dev
serveraliases:
- www.sandbox.dev
docroot: /var/www/web
port: '80'
setenv:
- 'APP_ENV dev'
custom_fragment: ''
ssl: '0'
ssl_cert: ''
ssl_key: ''
ssl_chain: ''
ssl_certs_dir: ''
ssl_protocol: ''
ssl_cipher: ''
directories:
avd_e84h116m6dg3:
path: /var/www/web
options:
- Indexes
- FollowSymlinks
- MultiViews
allow_override:
- All
require:
- 'all granted'
custom_fragment: ''
files_match:
avdfm_e84h116m6dg3:
path: \.php$
sethandler: 'proxy:fcgi://127.0.0.1:9000'
custom_fragment: ''
provider: filesmatch
provider: directory
此外,如果您发现 PHP
文件未被解析,请确保包含 files_match
部分。 puphpet
配置器不会自动添加它,因此您需要通过硬代码添加它。
我将 docroot 路径和目录路径更改为 /var/www/www,如下所示。这仍然会创建 html 文件夹,但从我想要的 www 文件夹提供服务。
vhosts:
av_dpp1xawpupht:
servername: mysite.local
serveraliases:
- www.mysite.local
docroot: /var/www/www
port: '80'
setenv:
- 'APPLICATION_ENV development'
custom_fragment: ''
ssl: '0'
ssl_cert: ''
ssl_key: ''
ssl_chain: ''
ssl_certs_dir: ''
ssl_protocol: ''
ssl_cipher: ''
directories:
avd_rtgzo3tlwbux:
path: /var/www/www
options:
- Indexes
- FollowSymlinks
- MultiViews
allow_override:
- All
require:
- 'all granted'
custom_fragment: ''
files_match:
avdfm_q9dzltiv10d5:
path: \.php$
sethandler: 'proxy:fcgi://127.0.0.1:9000'
custom_fragment: ''
provider: filesmatch
provider: directory
我也遇到了这个问题。
对我来说,这是由于我的 puphpet/config.yaml
文件中的 servername
属性 与我的 hosts
文件中列出的域不匹配造成的。
我确保我的 puphpet/config.yaml
文件中指定的 IP 地址和域:
vm:
network:
private_network: 192.168.56.199
.
.
.
vhosts:
av_9kfiq4m95oac:
servername: mysite.dev
serveraliases:
- www.mysite.dev
与我在 hosts
文件中指定的匹配:
192.168.56.199 mysite.dev www.mysite.dev
哦,在对 puphpet/config.yaml
文件进行更改后,别忘了 运行 vagrant provision
(这让我抓狂了几次)。
我已经使用 PuPHPet (Vagrant-Puppet-PHP) 设置了虚拟主机显然 PuPHPet 使用此配置为我创建了一个默认站点 10-default_vhost_80.conf
<VirtualHost *:80>
ServerName default
## Vhost docroot
DocumentRoot "/var/www/html"
## Directories, there should at least be a declaration for /var/www/html
<Directory "/var/www/html">
Options Indexes FollowSymlinks MultiViews
AllowOverride All
Require all granted
<FilesMatch "\.php$">
Require all granted
SetHandler proxy:fcgi://127.0.0.1:9000
</FilesMatch>
</Directory>
## Logging
ErrorLog "/var/log/apache2/default_vhost_80_error.log"
ServerSignature Off
CustomLog "/var/log/apache2/default_vhost_80_access.log" combined
</VirtualHost>
我已经创建了这个站点配置 site_dev.conf
<VirtualHost *:80>
ServerName site.dev
## Vhost docroot
DocumentRoot "/var/www/web"
## Directories, there should at least be a declaration for /var/www/web
<Directory "/var/www/web">
Options Indexes FollowSymlinks MultiViews
AllowOverride All
Require all granted
<FilesMatch "\.php$">
Require all granted
SetHandler proxy:fcgi://127.0.0.1:9000
</FilesMatch>
</Directory>
## Logging
ErrorLog "/var/log/apache2/av_0rjxvm6sfxhm_error.log"
ServerSignature Off
CustomLog "/var/log/apache2/av_0rjxvm6sfxhm_access.log" combined
## Server aliases
ServerAlias www.site.dev
## SetEnv/SetEnvIf for environment variables
SetEnv APP_ENV dev
</VirtualHost>
默认配置为apache2.conf
ServerName "local.puphpet"
ServerRoot "/etc/apache2"
PidFile ${APACHE_PID_FILE}
Timeout 120
KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimeout 15
User www-data
Group www-data
AccessFileName .htaccess
<FilesMatch "^\.ht">
Require all denied
</FilesMatch>
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
HostnameLookups Off
ErrorLog "/var/log/apache2/error.log"
LogLevel warn
EnableSendfile Off
#Listen 80
Include "/etc/apache2/mods-enabled/*.load"
Include "/etc/apache2/mods-enabled/*.conf"
Include "/etc/apache2/ports.conf"
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
IncludeOptional "/etc/apache2/conf.d/*.conf"
IncludeOptional "/etc/apache2/sites-enabled/*"
我已经禁用了 10-default_vhost_80
并重新加载了 apache,但是我的 DocumentRoot 仍然指向 /var/www/html/
我是不是遗漏了什么?
所以我所做的就是将 /var/www/html
变成符号 link 并指向 /var/www/web
。这同时解决了我的问题。
更新
我使用上面的解决方案发现了另一个问题,它影响了我的 xdebug
配置并且进程无法在 /var/www/web
中找到文件,因为它正在寻找符号 link /var/www/html
。所以
另一个解决方法是修改 10-default_vhost_80.conf
文件并手动将 /var/www/html
更改为 /var/www/web
并重新启动服务器。到目前为止一切顺利。
更新 2
因此,正确的解决方法是您需要确保 Directory Block
在 puphpet
配置器中填满,它会生成您在 yaml
文件中看到的 directories
部分以下。我认为这是由于对 apache 2.4
的更新,为什么需要这样做。
所以我得到了这个 config.yaml
av_s4zfpb2muecx:
servername: sandbox.dev
serveraliases:
- www.sandbox.dev
docroot: /var/www/web
port: '80'
setenv:
- 'APP_ENV dev'
custom_fragment: ''
ssl: '0'
ssl_cert: ''
ssl_key: ''
ssl_chain: ''
ssl_certs_dir: ''
ssl_protocol: ''
ssl_cipher: ''
directories:
avd_e84h116m6dg3:
path: /var/www/web
options:
- Indexes
- FollowSymlinks
- MultiViews
allow_override:
- All
require:
- 'all granted'
custom_fragment: ''
files_match:
avdfm_e84h116m6dg3:
path: \.php$
sethandler: 'proxy:fcgi://127.0.0.1:9000'
custom_fragment: ''
provider: filesmatch
provider: directory
此外,如果您发现 PHP
文件未被解析,请确保包含 files_match
部分。 puphpet
配置器不会自动添加它,因此您需要通过硬代码添加它。
我将 docroot 路径和目录路径更改为 /var/www/www,如下所示。这仍然会创建 html 文件夹,但从我想要的 www 文件夹提供服务。
vhosts:
av_dpp1xawpupht:
servername: mysite.local
serveraliases:
- www.mysite.local
docroot: /var/www/www
port: '80'
setenv:
- 'APPLICATION_ENV development'
custom_fragment: ''
ssl: '0'
ssl_cert: ''
ssl_key: ''
ssl_chain: ''
ssl_certs_dir: ''
ssl_protocol: ''
ssl_cipher: ''
directories:
avd_rtgzo3tlwbux:
path: /var/www/www
options:
- Indexes
- FollowSymlinks
- MultiViews
allow_override:
- All
require:
- 'all granted'
custom_fragment: ''
files_match:
avdfm_q9dzltiv10d5:
path: \.php$
sethandler: 'proxy:fcgi://127.0.0.1:9000'
custom_fragment: ''
provider: filesmatch
provider: directory
我也遇到了这个问题。
对我来说,这是由于我的 puphpet/config.yaml
文件中的 servername
属性 与我的 hosts
文件中列出的域不匹配造成的。
我确保我的 puphpet/config.yaml
文件中指定的 IP 地址和域:
vm:
network:
private_network: 192.168.56.199
.
.
.
vhosts:
av_9kfiq4m95oac:
servername: mysite.dev
serveraliases:
- www.mysite.dev
与我在 hosts
文件中指定的匹配:
192.168.56.199 mysite.dev www.mysite.dev
哦,在对 puphpet/config.yaml
文件进行更改后,别忘了 运行 vagrant provision
(这让我抓狂了几次)。