Commit ce07e8c794d28616f4baf9d3790c44633e77a7e7
1 parent
1f0e9c50
Exists in
master
Correção do bug do VirtualBox relacionado ao Sendfile.
Showing
1 changed file
with
3 additions
and
0 deletions
Show diff stats
sei/Dockerfile
... | ... | @@ -22,6 +22,9 @@ RUN yum -y update && \ |
22 | 22 | # Configuração do charset do Apache |
23 | 23 | RUN echo "AddDefaultCharset iso-8859-1" | tee -a /etc/httpd/conf/httpd.conf |
24 | 24 | |
25 | +# Correção do bug do VirtualBox relacionado ao Sendfile. http://docs.vagrantup.com/v2/synced-folders/virtualbox.html | |
26 | +RUN echo "EnableSendfile Off" | tee -a /etc/httpd/conf/httpd.conf | |
27 | + | |
25 | 28 | # Instalação do PHP 5 e demais bibliotecas |
26 | 29 | RUN yum -y update && \ |
27 | 30 | yum -y install php-5.3.* php-common php-cli php-pear php-bcmath php-gd php-gmp \ | ... | ... |