【问题标题】:Laravel Sail - TenancyForLaravel Package Local DomainsLaravel Sail - TenancyForLaravel 包本地域
【发布时间】:2022-10-15 19:33:42
【问题描述】:

我已经用 Sail 从头开始​​安装了 laravel。 并逐步为 Laravel 安装 Tenancy:https://tenancyforlaravel.com/docs/v3/quickstart

我的 laravel 项目正在使用:http://localhost 但不工作http://foo.localhosthttp://bar.localhost

我的中心域:

'central_domains' => [
    '127.0.0.1',
    'localhost',
],

我的 RouteServiceProvider.php

<?php

namespace App\Providers;

use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;

class RouteServiceProvider extends ServiceProvider
{
    /**
     * The path to the "home" route for your application.
     *
     * Typically, users are redirected here after authentication.
     *
     * @var string
     */
    public const HOME = '/home';

    /**
     * Define your route model bindings, pattern filters, and other route configuration.
     *
     * @return void
     */
    public function boot()
    {
        $this->configureRateLimiting();

        $this->routes(function () {
            $this->mapApiRoutes();
            $this->mapWebRoutes();
        });
    }

    /**
     * Configure the rate limiters for the application.
     *
     * @return void
     */
    protected function configureRateLimiting()
    {
        RateLimiter::for('api', function (Request $request) {
            return Limit::perMinute(60)->by($request->user()?->id ?: $request->ip());
        });
    }
    protected function mapWebRoutes()
    {
        foreach ($this->centralDomains() as $domain) {
            Route::middleware('web')
                ->domain($domain)
                ->namespace($this->namespace)
                ->group(base_path('routes/web.php'));
        }
    }

    protected function mapApiRoutes()
    {
        foreach ($this->centralDomains() as $domain) {
            Route::prefix('api')
                ->domain($domain)
                ->middleware('api')
                ->namespace($this->namespace)
                ->group(base_path('routes/api.php'));
        }
    }

    protected function centralDomains(): array
    {
        return config('tenancy.central_domains');
    }
}

配置有什么问题。 为什么我的子域不起作用?

【问题讨论】:

    标签: laravel


    【解决方案1】:

    我认为你应该检查域表在您的主数据库中。是否有任何关于您的域的条目,例如 foo.localhost 等。

    【讨论】:

      猜你喜欢
      • 2021-05-16
      • 2021-08-09
      • 2021-10-03
      • 2014-06-26
      • 1970-01-01
      • 2021-08-30
      • 2021-09-18
      • 2021-04-30
      • 2021-05-12
      相关资源
      最近更新 更多