私が使用していますMacでホームステッド+ベイグラント+ Virtualboxのを。
問題
遅い応答時間(TTFBなど)を修正する方法をたくさんのスレッド/回答で見つけましたが、どれも機能しませんでした。私の応答時間は25〜32秒の間で変化します。これは明らかにローカル開発では受け入れられません。
推奨されるソリューション
私はここから多くの提案された解決策を試しました:https://github.com/laravel/homestead/issues/901
また、これらのスレッドからの多くの提案を読んで試してみました。
- ホームステッドでの応答が非常に遅い
- Vagrant Homestead遅い
- 最後のリクエストから60秒後にページロードが遅い
- Vagrant(NFS同期フォルダー)上のホストとゲスト間の同期待ち時間を短縮
受け入れられた回答があったとしても、それらのどれも私を助けませんでした。
xdebugを無効にする
ここで説明されているようにxdebugを無効にすることは言うことができ ます 5秒節約ます。
ディスクサイズの変更
提案されるように固定するダイナミックからVMのディスクのサイズを変更しながら、ここと説明し、ここですべての助けにはならなかった(結果さえも悪化していました)。
ここで提案されている NFS(同期フォルダ)の使用
また、homestead / vagrantをNFSに設定しても効果はありませんでした。
試してみました(贅沢なファイル):
Vagrant.configure("2") do |config|
config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options:['nolock,vers=3,udp,noatime,actimeo=1']
end
また試しました(homestead.yaml)
folders:
-
map: '/Users/myuser/PhpstormProjects/example.com'
to: /home/vagrant/code
type: "nfs"
options:
mount_options: ['nolock','vers=3','udp','noatime','actimeo=1']
NFSはどちらの場合でも機能していましたが、ページの読み込み時のTTFBに関しては変わりませんでした。
natdnshostresolverの設定:オフ
ここで提案されているように私もnatdnshostresolverをオフにしようとしました でてが、変更はありませんでした。
Virtualboxイメージの調整
もちろん、RAM、CPU、グラフィックなどを増やすことも試みましたが、あなたが理解できるように、それは助けにはなりませんでした。
その他の提案
今のところ、私は、例えば、係員、またはあなたが与えることができる他のあらゆる推奨事項/解決策を試すこともできます。
よろしくお願いします!
アップデート1
VM のnginx.confを変更すると(@emotalityが調整を提案した後)、少しは役に立ちました。完全性と少しでも調整できる可能性のために、nginx.confファイルのhttp部分全体を次に示します。
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
# keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
keepalive_disable none;
keepalive_requests 200;
keepalive_timeout 300s;
server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# SSL Settings
##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
アップデート2
homestead.yamlのコンテンツ:
ip: 192.168.10.14
memory: 4096
cpus: 2
provider: virtualbox
natdnshostresolver: off
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
-
map: '/Users/myUser/PhpstormProjects/exampleproject.com'
to: /home/vagrant/code
type: "nfs"
options:
mount_options: ['nolock','vers=3','udp','noatime','actimeo=1']
sites:
-
map: exampleproject.local
to: /home/vagrant/code
databases:
- homestead
features:
-
mariadb: false
-
ohmyzsh: false
-
webdriver: false
name: exampleproject
hostname: exampleproject
Vagrantfileの内容:
# -*- mode: ruby -*-
# vi: set ft=ruby :
require 'json'
require 'yaml'
VAGRANTFILE_API_VERSION ||= "2"
confDir = $confDir ||= File.expand_path("vendor/laravel/homestead", File.dirname(__FILE__))
homesteadYamlPath = File.expand_path("Homestead.yaml", File.dirname(__FILE__))
homesteadJsonPath = File.expand_path("Homestead.json", File.dirname(__FILE__))
afterScriptPath = "after.sh"
customizationScriptPath = "user-customizations.sh"
aliasesPath = "aliases"
require File.expand_path(confDir + '/scripts/homestead.rb')
Vagrant.require_version '>= 2.2.4'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
if File.exist? aliasesPath then
config.vm.provision "file", source: aliasesPath, destination: "/tmp/bash_aliases"
config.vm.provision "shell" do |s|
s.inline = "awk '{ sub(\"\r$\", \"\"); print }' /tmp/bash_aliases > /home/vagrant/.bash_aliases"
end
end
if File.exist? homesteadYamlPath then
settings = YAML::load(File.read(homesteadYamlPath))
elsif File.exist? homesteadJsonPath then
settings = JSON::parse(File.read(homesteadJsonPath))
else
abort "Homestead settings file not found in " + File.dirname(__FILE__)
end
Homestead.configure(config, settings)
if File.exist? afterScriptPath then
config.vm.provision "shell", path: afterScriptPath, privileged: false, keep_color: true
end
if File.exist? customizationScriptPath then
config.vm.provision "shell", path: customizationScriptPath, privileged: false, keep_color: true
end
if Vagrant.has_plugin?('vagrant-hostsupdater')
config.hostsupdater.aliases = settings['sites'].map { |site| site['map'] }
elsif Vagrant.has_plugin?('vagrant-hostmanager')
config.hostmanager.enabled = true
config.hostmanager.manage_host = true
config.hostmanager.aliases = settings['sites'].map { |site| site['map'] }
end
end
vagrant plugin install vagrant-bindfs
て、マッピングをvagrantファイルに含めhomestead.yaml
ないようにしてください。また、VMを破棄して最初からやり直すことをお勧めします。
==> myproject: Bindfs seems to not be installed on the virtual machine, installing now myproject: Bindfs 1.13.7 is installed ==> myproject: Machine is ready to use bindfs! ==> myproject: Creating bind mounts after synced_folders... myproject: /home/vagrant/code => /home/vagrant/code
。残念ながらそれは問題を解決しませんでした。