イントロダクションIntroduction
Valet(ベレット:従者)はMacミニマニストのためのLaravel開発環境です。Vagrantも不要、/etc/hostsファイルも不要です。さらに、ローカルトンネルを使って、サイトを公開し、シェアすることもできます。ええ、私達はこういうのも好きなんですよね。Valet is a Laravel development environment for Mac minimalists. No Vagrant, no /etc/hosts
file. You can even share your sites publicly using local tunnels. Yeah, we like it too.
Laravel Valetはマシン起動時にバックグランドでNginxがいつも実行されるように、Macを設定します。そのため、DnsMasqを使用し、Valetは*.test
ドメインへの全リクエストを、ローカルマシンのインストール済みサイトへ向けるようにプロキシ動作します。Laravel Valet configures your Mac to always run Nginx[https://www.nginx.com/] in the background when your machine starts. Then, using DnsMasq[https://en.wikipedia.org/wiki/Dnsmasq], Valet proxies all requests on the *.test
domain to point to sites installed on your local machine.
言い換えれば、大体7MBのRAMを使うとても早いLaravelの開発環境です。ValetはVagrantやHomesteadを完全に置き換えるものではありませんが柔軟な基礎、とくにスピード重視であるか、RAMが限られているマシンで動作させるのに素晴らしい代替になります。In other words, a blazing fast Laravel development environment that uses roughly 7 MB of RAM. Valet isn't a complete replacement for Vagrant or Homestead, but provides a great alternative if you want flexible basics, prefer extreme speed, or are working on a machine with a limited amount of RAM.
Valetは以下をサポートしていますが、これらに限定されません。Out of the box, Valet support includes, but is not limited to:
独自のカスタムドライバでValetを拡張できます。However, you may extend Valet with your own custom drivers[#custom-valet-drivers].
ValetとHomesteadValet Or Homestead
ご存知のように、ローカルのLaravel開発環境としてHomesteadも用意しています。HomesteadとValetは利用者の目的とローカルの開発についてのアプローチが異なります。Homesteadは自動的にNginx設定を行うUbuntuの完全な仮想マシンを提供しています。HomesteadはLinux開発環境の完全な仮想化を行いたい、もしくはWindows/Linux上で動作させたい場合、素晴らしい選択肢になります。As you may know, Laravel offers Homestead[/docs/{{version}}/homestead], another local Laravel development environment. Homestead and Valet differ in regards to their intended audience and their approach to local development. Homestead offers an entire Ubuntu virtual machine with automated Nginx configuration. Homestead is a wonderful choice if you want a fully virtualized Linux development environment or are on Windows / Linux.
ValetはMac上でのみサポートされ、PHPとデータベースサーバを直接ローカルマシンへインストールする必要があります。Homebrewを利用し、brew install php
とbrew install mysql
のようなコマンドを実行すれば、簡単にインストールできます。Valetは最低限度のリソースを使い、とても早いローカル開発環境を提供します。そのため、PHPとMySQLだけが必要で、完全な仮想開発環境は必要ない場合にぴったりです。Valet only supports Mac, and requires you to install PHP and a database server directly onto your local machine. This is easily achieved by using Homebrew[https://brew.sh/] with commands like brew install php
and brew install mysql
. Valet provides a blazing fast local development environment with minimal resource consumption, so it's great for developers who only require PHP / MySQL and do not need a fully virtualized development environment.
ValetとHomesteadのどちらを選んでも、Laravelの開発環境に向け設定されており、良い選択になるでしょう。どちらを選ぶかは、自分の好みとチームの必要により決まるでしょう。Both Valet and Homestead are great choices for configuring your Laravel development environment. Which one you choose will depend on your personal taste and your team's needs.
インストールInstallation
ValetにはMacオペレーティングシステムとHomebrewが必要です。インストールする前に、ApacheやNginxのようなローカルマシンの80番ポートへバインドするプログラムがないことを確認してください。Valet requires macOS and Homebrew[https://brew.sh/]. Before installation, you should make sure that no other programs such as Apache or Nginx are binding to your local machine's port 80.
Valetがインストールできたら、ping foobar.test
のようなコマンドで、ターミナルから*.test
ドメインに対してpingを実行してください。Valetが正しくインストールされていれば、このドメインは127.0.0.1
へ対応していることがわかるでしょう。Once Valet is installed, try pinging any *.test
domain on your terminal using a command such as ping foobar.test
. If Valet is installed correctly you should see this domain responding on 127.0.0.1
.
Valetはマシンが起動されると、毎回デーモンを自動的に起動します。Valetが完全にインストールされていれば、valet start
やvalet install
を再び実行する必要は永久にありません。Valet will automatically start its daemon each time your machine boots. There is no need to run valet start
or valet install
ever again once the initial Valet installation is complete.
他のドメインの使用Using Another Domain
デフォルトでValetは.test
TLDをプロジェクトのドメインとして処理します。他のドメインを使いたい場合、valet tld tld-name
コマンドを使ってください。By default, Valet serves your projects using the .test
TLD. If you'd like to use another domain, you can do so using the valet tld tld-name
command.
たとえば、.test
の代わりに.app
を使用したければ、valet tld app
と実行します。Valetは*.app
をプロジェクトのために自動的に使い始めます。For example, if you'd like to use .app
instead of .test
, run valet tld app
and Valet will start serving your projects at *.app
automatically.
データベースDatabase
データベースを使いたい場合、コマンドラインでbrew install mysql@5.7
を実行し、MySQLを試してください。MySQLがインストールできたら、brew services start mysql@5.7
コマンドを使い、起動します。127.0.0.1
でデータベースに接続し、ユーザー名はroot
、パスワードは空文字列です。If you need a database, try MySQL by running brew install mysql@5.7
on your command line. Once MySQL has been installed, you may start it using the brew services start mysql@5.7
command. You can then connect to the database at 127.0.0.1
using the root
username and an empty string for the password.
PHPバージョンPHP Versions
Valetではvalet use php@version
コマンドにより、PHPバージョンを変更できます。指定されたPHPバージョンがインストールされていない場合、ValetはBrewによりインストールします。Valet allows you to switch PHP versions using the valet use php@version
command. Valet will install the specified PHP version via Brew if it is not already installed:
valet use php@7.2
valet use php
Note: {note} Valet only serves one PHP version at a time, even if you have multiple PHP versions installed.
複数のPHPバージョンをインストールしている場合でも、Valetは一度に一つのPHPバージョンのみを提供します。
インストレーションのリセットResetting Your Installation
Valetインストレーションが正しく動作せずに問題が起きた時は、composer global update
の後に、valet install
を実行してください。これによりインストール済みのValetがリセットされ、さまざまな問題が解決されます。稀にValetを「ハードリセット」する必要がある場合もあり、その場合はvalet install
の前にvalet uninstall --force
を実行してください。If you are having trouble getting your Valet installation to run properly, executing the composer global update
command followed by valet install
will reset your installation and can solve a variety of problems. In rare cases it may be necessary to "hard reset" Valet by executing valet uninstall --force
followed by valet install
.
アップグレードUpgrading
Valetインストールをアップデートするには、ターミナルでcomposer global update
コマンドを実行します。アップグレードできたら、valet install
コマンドを実行し、必要な設定ファイルの追加アップグレードを行うのは、グッドプラクティスです。You may update your Valet installation using the composer global update
command in your terminal. After upgrading, it is good practice to run the valet install
command so Valet can make additional upgrades to your configuration files if necessary.
サイト動作Serving Sites
Valetがインストールできたら、サイトを動作させる準備ができました。Laravelサイトを動作させるために役立つ、park
とlink
の2コマンドを用意しています。Once Valet is installed, you're ready to start serving sites. Valet provides two commands to help you serve your Laravel sites: park
and link
.
park
コマンドThe park
Command
必要なのはこれだけです。 これで"parked"ディレクトリ内に作成されたLaravelプロジェクトは、http://フォルダ名.test
規約に従い、自動的に動作します。That's all there is to it. Now, any Laravel project you create within your "parked" directory will automatically be served using the http://folder-name.test
convention.
link
コマンドThe link
Command
link
コマンドはpark
のように親ディレクトリを指定するのではなく、各ディレクトリ中で一つのサイトを動作させるのに便利です。The link
command may also be used to serve your Laravel sites. This command is useful if you want to serve a single site in a directory and not the entire directory.
リンクされた全ディレクトリをリストするには、valet links
コマンドを実行してください。シンボリックリンクを外すときは、valet unlink app-name
を使います。To see a listing of all of your linked directories, run the valet links
command. You may use valet unlink app-name
to destroy the symbolic link.
">Tip!! 複数の(サブ)ドメインで同じプロジェクトを動かすために、
valet link
を使用できます。サブドメインや他のドメインをプロジェクトに追加するためには、プロジェクトフォルダからvalet link subdomain.app-name
を実行します。{tip} You can usevalet link
to serve the same project from multiple (sub)domains. To add a subdomain or another domain to your project runvalet link subdomain.app-name
from the project folder.
TLSを使ったサイト安全化Securing Sites With TLS
Valetはデフォルトで通常のHTTP通信で接続します。しかし、HTTP/2を使った暗号化されたTLSで通信したい場合は、secure
コマンドを使ってください。たとえば、laravel.test
ドメインでValetによりサイトが動作している場合、以下のコマンドを実行することで安全な通信を行います。By default, Valet serves sites over plain HTTP. However, if you would like to serve a site over encrypted TLS using HTTP/2, use the secure
command. For example, if your site is being served by Valet on the laravel.test
domain, you should run the following command to secure it:
valet secure laravel
サイトを「安全でない」状態へ戻し、通常のHTTP通信を使いたい場合は、unsecure
コマンドです。secure
コマンドと同様に、セキュアな通信を辞めたいホスト名を指定します。To "unsecure" a site and revert back to serving its traffic over plain HTTP, use the unsecure
command. Like the secure
command, this command accepts the host name that you wish to unsecure:
valet unsecure laravel
サイトの共有Sharing Sites
Valetはローカルサイトをモバイルでテストしたり、チームメンバーや顧客と共有したりするため、世界に公開するコマンドも用意しています。Valetがインストールしてあれば、他のソフトウェアは必要ありません。Valet even includes a command to share your local sites with the world, providing an easy way to test your site on mobile devices or share it with team members and clients. No additional software installation is required once Valet is installed.
Ngrokを使用した公開Sharing Sites Via Ngrok
サイトを共有するには、ターミナルでサイトのディレクトリに移動し、valet share
コマンドを実行します。公開用のURLはクリップボードにコピーされますので、ブラウザに直接ペーストしてください。これだけでブラウザで閲覧したり、チームでシェアできます。To share a site, navigate to the site's directory in your terminal and run the valet share
command. A publicly accessible URL will be inserted into your clipboard and is ready to paste directly into your browser or share with your team.
サイトの共有を中止する場合は、Control + C
でプロセスをキャンセルしてください。To stop sharing your site, hit Control + C
to cancel the process.
">Tip!! 共有コマンドには、
valet share --region=eu
のようなオプションのパラメータを渡せます。詳しい情報は、ngrokのドキュメントをご覧ください。{tip} You may pass additional parameters to the share command, such asvalet share --region=eu
. For more information, consult the ngrok documentation[https://ngrok.com/docs].
ローカルネットワークでのサイト共有Sharing Sites On Your Local Network
Valetは内部の127.0.0.1
インターフェイスへ送信されるトラフィックをデフォルトで制限しています。これにより、開発マシンをインターネットからのセキュリティリスクに晒すのを防いでいます。Valet restricts incoming traffic to the internal 127.0.0.1
interface by default. This way your development machine isn't exposed to security risks from the Internet.
たとえば、192.168.1.10/app-name.test
のようにIPアドレスにより、あなたのマシン上のValetサイトへローカルネットワーク上の他のデバイスからのアクセスを許す必要があるとしましょう。80ポートと443ポートへ向けての127.0.0.1:
プレフィックスを削除することで、listen
ディレクティブの制限を解除するために、適切なNginx設定ファイルを編集する必要があります、If you wish to allow other devices on your local network to access the Valet sites on your machine via your machine's IP address (eg: 192.168.1.10/app-name.test
), you will need to manually edit the appropriate Nginx configuration file for that site to remove the restriction on the listen
directive by removing the the 127.0.0.1:
prefix on the directive for ports 80 and 443.
プロジェクトでvalet secure
を実行していない場合は、/usr/local/etc/nginx/valet/valet.conf
ファイルを編集し、HTTPSではないサイトへのネットワークアクセスを開けます。あるサイトに対しvalet secure
を実行することで、HTTPSにてプロジェクトサイトを動かしている場合は、~/.config/valet/Nginx/app-name.test
ファイルを編集する必要があります。If you have not run valet secure
on the project, you can open up network access for all non-HTTPS sites by editing the /usr/local/etc/nginx/valet/valet.conf
file. However, if you're serving the project site over HTTPS (you have run valet secure
for the site) then you should edit the ~/.config/valet/Nginx/app-name.test
file.
Nginx設定を更新したら、設定の変更を反映するためにvalet restart
コマンドを実行してください。Once you have updated your Nginx configuration, run the valet restart
command to apply the configuration changes.
サイト限定環境変数Site Specific Environment Variables
あるアプリケーションでは、サーバ環境変数に依存するフレームワークを使っているが、プロジェクトでそのような変数を設定する手段を提供していないことがあります。Valetでは、プロジェクトのルートに.valet-env.php
ファイルを追加することで、サイト限定の環境変数を設定できます。Some applications using other frameworks may depend on server environment variables but do not provide a way for those variables to be configured within your project. Valet allows you to configure site specific environment variables by adding a .valet-env.php
file within the root of your project. These variables will be added to the $_SERVER
global array:
<?php
// foo.testサイトのために、$_SERVER['key']へ"value"をセットする
return [
'foo' => [
'key' => 'value',
],
];
// 全サイトのために、$_SERVER['key']へ"value"をセットする
return [
'*' => [
'key' => 'value',
],
];
デフォルトサイトの提供Serving A Default Site
場合により、未知のテストドメインを訪れた場合は404
とする代わりに、デフォルト("default")サイトをValetに提供してもらいたいこともあります。これを実現するには、~/.config/valet/config.json
設定ファルでデフォルトサイトにしたいサイトへのパスをdefault
オプションとして追加します。Sometimes, you may wish to configure Valet to serve a "default" site instead of a 404
when visiting an unknown test
domain. To accomplish this, you may add a default
option to your ~/.config/valet/config.json
configuration file containing the path to the site that should function as your default site:
"default": "/Users/Sally/Sites/foo",
カスタムValetドライバCustom Valet Drivers
Valetでサポートされていない、他のフレームワークやCMSでPHPアプリケーションを実行するには、独自のValet「ドライバ」を書く必要があります。Valetをインストールすると作成される、~/.config/valet/Drivers
ディレクトリにSampleValetDriver.php
ファイルが存在しています。このファイルは、カスタムドライバーをどのように書いたら良いかをデモンストレートするサンプルドライバの実装コードです。ドライバを書くために必要なserves
、isStaticFile
、frontControllerPath
の3メソッドを実装するだけです。You can write your own Valet "driver" to serve PHP applications running on another framework or CMS that is not natively supported by Valet. When you install Valet, a ~/.config/valet/Drivers
directory is created which contains a SampleValetDriver.php
file. This file contains a sample driver implementation to demonstrate how to write a custom driver. Writing a driver only requires you to implement three methods: serves
, isStaticFile
, and frontControllerPath
.
全3メソッドは$sitePath
、$siteName
、$uri
を引数で受け取ります。$sitePath
は、/Users/Lisa/Sites/my-project
のように、サイトプロジェクトへのフルパスです。$siteName
は"ホスト" / "サイト名"記法のドメイン(my-project
)です。$uri
はやって来たリクエストのURI(/foo/bar
)です。All three methods receive the $sitePath
, $siteName
, and $uri
values as their arguments. The $sitePath
is the fully qualified path to the site being served on your machine, such as /Users/Lisa/Sites/my-project
. The $siteName
is the "host" / "site name" portion of the domain (my-project
). The $uri
is the incoming request URI (/foo/bar
).
カスタムValetドライバを書き上げたら、フレームワークValetDriver.php
命名規則をつかい、~/.config/valet/Drivers
ディレクトリ下に設置してください。たとえば、WordPress用にカスタムValetドライバを書いたら、ファイル名はWordPressValetDriver.php
になります。Once you have completed your custom Valet driver, place it in the ~/.config/valet/Drivers
directory using the FrameworkValetDriver.php
naming convention. For example, if you are writing a custom valet driver for WordPress, your file name should be WordPressValetDriver.php
.
カスタムValetドライバで実装する各メソッドのサンプルコードを見ていきましょう。Let's take a look at a sample implementation of each method your custom Valet driver should implement.
serves
メソッドThe serves
Method
serves
メソッドは、そのドライバがやって来たリクエストを処理すべき場合に、true
を返してください。それ以外の場合はfalse
を返してください。そのためには、メソッドの中で、渡された$sitePath
の内容が、動作させようとするプロジェクトタイプを含んでいるかを判定します。The serves
method should return true
if your driver should handle the incoming request. Otherwise, the method should return false
. So, within this method you should attempt to determine if the given $sitePath
contains a project of the type you are trying to serve.
では擬似サンプルとして、WordPressValetDriver
を書いてみましょう。serves
メソッドは以下のようになります。For example, let's pretend we are writing a WordPressValetDriver
. Our serves
method might look something like this:
/**
* このドライバでリクエストを処理するか決める
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return bool
*/
public function serves($sitePath, $siteName, $uri)
{
return is_dir($sitePath.'/wp-admin');
}
isStaticFile
メソッドThe isStaticFile
Method
isStaticFile
はリクエストが画像やスタイルシートのような「静的」なファイルであるかを判定します。ファイルが静的なものであれば、そのファイルが存在するディスク上のフルパスを返します。リクエストが静的ファイルでない場合は、false
を返します。The isStaticFile
should determine if the incoming request is for a file that is "static", such as an image or a stylesheet. If the file is static, the method should return the fully qualified path to the static file on disk. If the incoming request is not for a static file, the method should return false
:
/**
* リクエストが静的なファイルであるかを判定する
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return string|false
*/
public function isStaticFile($sitePath, $siteName, $uri)
{
if (file_exists($staticFilePath = $sitePath.'/public/'.$uri)) {
return $staticFilePath;
}
return false;
}
Note:
isStaticFile
メソッドは、リクエストのURIが/
ではなく、serves
メソッドでtrue
が返された場合のみ呼びだされます。{note} TheisStaticFile
method will only be called if theserves
method returnstrue
for the incoming request and the request URI is not/
.
frontControllerPath
メソッドThe frontControllerPath
Method
frontControllerPath
メソッドは、アプリケーションの「フロントコントローラ」への絶対パスを返します。通常は"index.php`ファイルか、似たようなファイルでしょう。The frontControllerPath
method should return the fully qualified path to your application's "front controller", which is typically your "index.php" file or equivalent:
/**
* アプリケーションのフロントコントローラへの絶対パスの取得
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return string
*/
public function frontControllerPath($sitePath, $siteName, $uri)
{
return $sitePath.'/public/index.php';
}
ローカルドライバLocal Drivers
一つのアプリケーションに対して、Valetのカスタムドライバを定義する場合は、アプリケーションのルートディレクトリにLocalValetDriver.php
を作成してください。カスタムドライバは、ベースのValetDriver
クラスか、LaravelValetDriver
のような、既存のアプリケーション専用のドライバを拡張します。If you would like to define a custom Valet driver for a single application, create a LocalValetDriver.php
in the application's root directory. Your custom driver may extend the base ValetDriver
class or extend an existing application specific driver such as the LaravelValetDriver
:
class LocalValetDriver extends LaravelValetDriver
{
/**
* リクエストに対し、このドライバを動作させるかを決める
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return bool
*/
public function serves($sitePath, $siteName, $uri)
{
return true;
}
/**
* アプリケーションのフロントコントローラに対する完全な解決済みパスを取得する
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
* @return string
*/
public function frontControllerPath($sitePath, $siteName, $uri)
{
return $sitePath.'/public_html/index.php';
}
}
PHP設定PHP Configuration
インストールしたPHPをカスタマイズするための/usr/local/etc/php/7.X/conf.d/
ディレクトリへ、PHP設定の.ini
ファイルを追加できます。設定を追加、もしくは更新したらvalet restart php
を実行してください。You may add additional PHP configuration .ini
files in the /usr/local/etc/php/7.X/conf.d/
directory to customize your PHP installation. Once you've added or updated these settings you should run valet restart php
.
PHPメモリ制限PHP Memory Limits
Valetは、/usr/local/etc/php/7.X/conf.d/php-memory-limits.ini
設定ファイルで最大メモリ制限とアップロードファイルの最大サイズをデフォルトとして指定しています。これはCLIとFPMのPHPプロセス両方に影響します。By default, Valet specifies the PHP installation's memory limit and max file upload size in the /usr/local/etc/php/7.X/conf.d/php-memory-limits.ini
configuration file. This affects both the CLI and FPM PHP processes.
PHP-FPMのPoolプロセスPHP-FPM Pool Processes
ValetのPHP−FPM設定は、/usr/local/etc/php/7.X/php-fpm.d/valet-fpm.conf
設定ファイルに含まれています。このファイルでPHPアプリケーションにより使用されるFPMサーバと子プロセスの数を増やすことができます。Valet's PHP-FPM configuration is contained within the /usr/local/etc/php/7.X/php-fpm.d/valet-fpm.conf
configuration file. In this file you may increase the number of FPM servers and child processes utilized by your PHP application.
その他のValetコマンドOther Valet Commands
コマンドCommand | 説明Description |
---|---|
valet forget valet forget |
"park"された(サイト検索の親ディレクトリとして登録されたJ)ディレクトリでこのコマンドを実行し、サイト検索対象のディレクトリリストから外します。Run this command from a "parked" directory to remove it from the parked directory list. |
valet log valet log |
Valetサービスにより書き込まれたログリストの表示View a list of logs which are written by Valet's services. |
valet paths valet paths |
"park"されたすべてのパスを表示します。View all of your "parked" paths. |
valet restart valet restart |
Valetデーモンをリスタートします。Restart the Valet daemon. |
valet start valet start |
Valetデーモンをスタートします。Start the Valet daemon. |
valet stop valet stop |
Valetデーモンを停止します。Stop the Valet daemon. |
valet trust valet trust |
Valetコマンド実行でパスワード入力をしなくて済むように、BrewとValetへsudoersファイルを追加します。Add sudoers files for Brew and Valet to allow Valet commands to be run without prompting for passwords. |
valet uninstall valet uninstall |
Valetをアンインストールします。手動で削除する場合のインストラクションを表示します。--force パラメータを指定した場合は、Valetすべてを強制的に削除します。Uninstall Valet: Shows instructions for manual uninstall; or pass the --force parameter to aggressively delete all of Valet. |
ValetのディレクトリとファイルValet Directories & Files
Valet環境の問題を追求/解決するときに役立つ、ディレクトリとファイルの一覧です。You may find the following directory and file information helpful while troubleshooting issues with your Valet environment:
ファイル/ディレクトリFile / Path | 説明Description |
---|---|
~/.config/valet/ ~/.config/valet/ |
Valetの設定すべてが含まれます。このフォルダのバックアップを管理しておきましょう。Contains all of Valet's configuration. You may wish to maintain a backup of this folder. |
~/.config/valet/dnsmasq.d/ ~/.config/valet/dnsmasq.d/ |
DNSMasqの設定が含まれます。Contains DNSMasq's configuration. |
~/.config/valet/Drivers/ ~/.config/valet/Drivers/ |
カスタムValetドライバが含まれます。Contains custom Valet drivers. |
~/.config/valet/Extensions/ ~/.config/valet/Extensions/ |
カスタムValet拡張/コマンドが含まれます。Contains custom Valet extensions / commands. |
~/.config/valet/Nginx/ ~/.config/valet/Nginx/ |
Valetが生成したNginxサイト設定すべてが含まれます。生成済みファイルはinstall 、secure 、tld コマンド実行時に再生成されます。Contains all Valet generated Nginx site configurations. These files are rebuilt when running the install , secure , and tld commands. |
~/.config/valet/Sites/ ~/.config/valet/Sites/ |
リンク済みプロジェクへのシンボリックリンクすべてが含まれます。Contains all symbolic links for linked projects. |
~/.config/valet/config.json ~/.config/valet/config.json |
Valetの主設定ファイルです。Valet's master configuration file |
~/.config/valet/valet.sock ~/.config/valet/valet.sock |
ValetのNginx設定で指定されているPHP-FPMソケットです。PHPが正しく実行されているときのみ存在します。The PHP-FPM socket used by Valet's Nginx configuration. This will only exist if PHP is running properly. |
~/.config/valet/Log/fpm-php.www.log ~/.config/valet/Log/fpm-php.www.log |
PHPエラーのユーザーログです。User log for PHP errors. |
~/.config/valet/Log/nginx-error.log ~/.config/valet/Log/nginx-error.log |
Nginxエラーのユーザーログです。User log for Nginx errors. |
/usr/local/var/log/php-fpm.log /usr/local/var/log/php-fpm.log |
PHP-FPMエラーのシステムログです。System log for PHP-FPM errors. |
/usr/local/var/log/nginx /usr/local/var/log/nginx |
Nginxのアクセスとエラーログが含まれます。Contains Nginx access and error logs. |
/usr/local/etc/php/X.X/conf.d /usr/local/etc/php/X.X/conf.d |
さまざまなPHP設定に使用される*.ini ファイルが含まれます。Contains *.ini files for various PHP configuration settings. |
/usr/local/etc/php/X.X/php-fpm.d/valet-fpm.conf /usr/local/etc/php/X.X/php-fpm.d/valet-fpm.conf |
PHP-FPMプール設定ファイルです。PHP-FPM pool configuration file. |
~/.composer/vendor/laravel/valet/cli/stubs/secure.valet.conf ~/.composer/vendor/laravel/valet/cli/stubs/secure.valet.conf |
サイト認証を構築するのに使用されるデフォルトNginx設定です。The default Nginx configuration used for building site certificates. |