3

我已经使用 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/我是否遗漏了什么?

4

3 回答 3

1

所以我所做的就是把/var/www/html变成一个符号链接并指向/var/www/web. 这同时解决了我的问题。

更新
我使用上面的解决方案发现了另一个问题,它影响了xdebug我的配置,并且进程找不到文件,/var/www/web因为它正在寻找符号链接中的文件/var/www/html。因此,另一种解决方法是修改10-default_vhost_80.conf文件并更改/var/www/html/var/www/web手动并重新启动服务器。到目前为止,一切都很好。

更新 2
因此,正确的解决方法是您需要确保Directory Block在配置器中填充了 ,puphpet并且它会生成您在下面的文件中directories看到的部分。yaml我认为这是由于更新了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配置器自动添加的,因此您需要通过硬代码添加它。

于 2015-05-20T15:07:08.893 回答
0

我将 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
于 2015-06-08T13:39:14.383 回答
0

我也有这个问题。

对我来说,这是由于我的文件中的servername属性与我的puphpet/config.yaml文件中列出的域不匹配造成的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

哦,别忘了vagrant provision在对文件进行更改后运行puphpet/config.yaml(这让我抓了好几次)。

于 2015-09-01T17:27:51.363 回答