1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 08:30:07 +01:00

🚚 Use insecure instead of unsecure.

This commit is contained in:
Mikaël Popowicz
2021-04-26 18:00:33 +02:00
parent b64b9bd81a
commit 7fdcdd3544
3 changed files with 11 additions and 11 deletions

View File

@@ -210,13 +210,13 @@
/**
* Create an Nginx proxy config for the specified domain
*/
$app->command('proxy domain host [--unsecure]', function ($domain, $host, $unsecure) {
$app->command('proxy domain host [--insecure]', function ($domain, $host, $insecure) {
Site::proxyCreate($domain, $host, $unsecure);
Site::proxyCreate($domain, $host, $insecure);
Nginx::restart();
})->descriptions('Create an Nginx proxy site for the specified host. Useful for docker, mailhog etc.', [
'--unsecure' => 'Create a proxy without SSL'
'--insecure' => 'Create a proxy without SSL'
]);
/**