上传到服务器时,我是否需要在laravel中更改database.php文件中的数据库配置?

时间:2016-10-01 05:01:00

标签: laravel laravel-5.2 laravel-5.1 web-hosting shared-hosting

  

上传到服务器时,是否需要在laravel中的database.php文件中更改数据库配置?

 let position = touch.locationInView(self)

 if CGRectContainsPoint(T.frame, position) {
      // you have touch on textField T
  }

2 个答案:

答案 0 :(得分:3)

请勿更改database.php配置文件中的任何内容。您需要做的是更改服务器端.env文件中的数据库凭据。

因此,您将在本地计算机和服务器上拥有不同的.env文件,但是database.php配置文件相同。

https://laravel.com/docs/5.3/configuration#environment-configuration

答案 1 :(得分:1)

更新您的database.php

<IfModule mod_deflate.c>
<FilesMatch "\.(html|php|txt|xml|js|css)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>