应用程序 URL 在 laravel 5 中的意义是什么
在拉拉维尔源中,实际用途是什么?Config/app.php
url
它说应用程序URL将由 使用,那么它实际上应该是什么?artisan command line tool
我的意思是它应该是或应该是或应该是http://mydomainname.com
/var/www/laravel/
/var/www/laravel/public
当前配置
/*
|--------------------------------------------------------------------------
| Application URL
|--------------------------------------------------------------------------
|
| This URL is used by the console to properly generate URLs when using
| the Artisan command line tool. You should set this to the root of
| your application so that it is used when running Artisan tasks.
|
*/
'url' => 'http://localhost/',
前提是我的应用程序源位于目录,并且 laravel 公用文件夹位于指向目录中/var/www/
/var/www/laravel/public
http://mydomainname.com
/var/www/laravel/public
用例:
我将使用从中调度,这反过来将排队要在数据库中发送的邮件,并且将像往常一样处理队列laravel schedular
/app/Console/Kernel.php
periodic sendMail commands
queue listner
队列在localhost(我的本地xamp服务器)上工作正常,但我担心生产中的价值应该是什么url