You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using multiple subDomains ( subDomain1.subDomain2.domain.com ) I can access the nova dashboard when in development/production model of the app.
My license key has the "domain.com" domain (I can't put the real domain for legal reasons)
php artisan nova:check-license displays on development and production mode:
Your license key is valid and correctly configured! Thank you for being a Nova customer. 🚀
APP_ENV=development a license key tagged development, doesn't works
APP_ENV=production with the main license key, doesn't works
The server is using dev.xxxxxx.domain.com
I'm using the provided Nova Gate:
protected function gate() { Gate::define('viewNova', function ($user) { return in_array($user->email, [ 'user@domain.com' ]); }); }
Being the email a valid user email in the DB.
If I switch to APP_ENV=local , it works (of course)
That's all info I can provide publicly.
The text was updated successfully, but these errors were encountered:
Description:
When using multiple subDomains ( subDomain1.subDomain2.domain.com ) I can access the nova dashboard when in development/production model of the app.
My license key has the "domain.com" domain (I can't put the real domain for legal reasons)
php artisan nova:check-license
displays on development and production mode:Your license key is valid and correctly configured! Thank you for being a Nova customer. 🚀
APP_ENV=development
a license key tagged development, doesn't worksAPP_ENV=production
with the main license key, doesn't worksThe server is using
dev.xxxxxx.domain.com
I'm using the provided Nova Gate:
protected function gate() { Gate::define('viewNova', function ($user) { return in_array($user->email, [ 'user@domain.com' ]); }); }
Being the email a valid user email in the DB.
If I switch to
APP_ENV=local
, it works (of course)That's all info I can provide publicly.
The text was updated successfully, but these errors were encountered: