在生产环境中使用 Laravel 和 docker 登录的问题

问题描述 投票:0回答:2

我有一个 Laravel 应用程序,目前正在集成 docker。该应用程序在本地运行完美,但在生产环境中我根本无法登录。每次我提交登录表单时,我都会被重定向到登录表单,没有任何成功或失败消息。 我已经意识到它应该到达控制器的请求但它没有到达动作。我在构造函数中放置了一个 die 命令并且它起作用了但是当我在控制器操作的第一行中做了同样的事情时却没有。

 <?php
namespace App\Http\Controllers\Auth;

use App\User;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
use Monolog\Logger;
use Validator;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\AuthenticatesUsers;

class AuthController extends Controller
{
/*
|--------------------------------------------------------------------- 
| Registration & Login Controller
|---------------------------------------------------------------------
|
| This controller handles the registration of new users, as well as the
| authentication of existing users. By default, this controller uses
| a simple trait to add these behaviors. Why don't you explore it?
|
*/

use AuthenticatesUsers;

/**
 * Where to redirect users after login / registration.
 *
 * @var string
 */
protected $redirectTo = '/';

/**
 * Create a new authentication controller instance.
 *
 * @return void
 */
public function __construct()
{
     // die('something') works here
    $this->middleware('guest', ['except' => ['logout', 'register', 'showRegistrationForm']]);
    // die('something') works here too
}

/**
 * Get a validator for an incoming registration request.
 *
 * @param  array  $data
 * @return \Illuminate\Contracts\Validation\Validator
 */
protected function validator(array $data)
{
    return Validator::make($data, [
        'rut' => 'required|max:30',
        'apellidos' => 'required|max:255',
        'name' => 'required|max:255',
        'email' => 'required|email|max:255|unique:users',
        'password' => 'required|confirmed|min:6',

    ]);
}

/**
 * Create a new user instance after a valid registration.
 *
 * @param  array  $data
 * @return User
 */
protected function create(array $data)
{
}

public function login(Request $request)
{
   //die('something'); doesn't work here
   $this->validateLogin($request);
   // If the class is using the ThrottlesLogins trait, we can automatically throttle
  // the login attempts for this application. We'll key this by the username and
  // the IP address of the client making these requests into this application.
  if ($this->hasTooManyLoginAttempts($request)) {
    $this->fireLockoutEvent($request);
    return $this->sendLockoutResponse($request);
  }

  if ($this->attemptLogin($request)) {
    return $this->sendLoginResponse($request);
  }

// If the login attempt was unsuccessful we will increment the number of attempts
// to login and redirect the user back to the login form. Of course, when this
// user surpasses their maximum number of attempts they will get locked out.
  $this->incrementLoginAttempts($request);
  return $this->sendFailedLoginResponse($request);
}

}
docker authentication laravel-5.3 laravel-middleware
2个回答
1
投票

我不知道你是否还需要它,但我遇到了同样的问题。您需要使用您在 Dockerfile 中为 WORKDIR 设置的路径修改 bootstrap/cache/config.php 中的路径。


0
投票

我不得不重新创建配置缓存

php artisan config:cache

在那之后工作。

归功于:https://stackoverflow.com/a/65021311/4193913

© www.soinside.com 2019 - 2024. All rights reserved.