Skip to content
This repository has been archived by the owner on Apr 19, 2022. It is now read-only.

Commit

Permalink
Возвращение APP_URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
jhaoda committed Sep 11, 2016
1 parent 38910ee commit dc90fce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ APP_DEBUG=true
APP_LOG=daily
APP_LOG_LEVEL=debug
APP_DOMAIN=localhost
APP_URL="http:https://${APP_DOMAIN}"

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
Expand Down
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
|
*/

'url' => 'http:https://'.env('APP_DOMAIN', 'localhost'),
'url' => env('APP_URL', 'http:https://localhost'),

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

#### Изменения:

* `APP_DOMAIN` вместо `APP_URL`, используется в настройках `app.url` и `session.domain`;
* параметр `APP_DOMAIN`, используется в `APP_URL`, для callback-адресов социальных сетей и в `session.domain`;
* режим ротации логов `daily` вместо `single`;
* закомментированны все алиасы фасадов.

Expand Down

0 comments on commit dc90fce

Please sign in to comment.