Fix: HTTPS-Redirect im Wizard entfernt + nginx HTTP-Block korrigiert
HTTPS→HTTP Redirect war ein Workaround für SESSION_SECURE_COOKIE, der jetzt durch den Installer-Fix (false initial) nicht mehr nötig ist. fastcgi_param HTTPS on gehört nur in den 443-Block, nicht in den 80-Block. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>main v1.1.163
parent
ed176ec243
commit
32f43020d3
|
|
@ -47,10 +47,6 @@ class Wizard extends Component
|
||||||
|
|
||||||
public function mount()
|
public function mount()
|
||||||
{
|
{
|
||||||
if (request()->secure()) {
|
|
||||||
return redirect()->to('http://' . request()->getHttpHost() . '/setup');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->instance_name = config('app.name', 'Mailwolt');
|
$this->instance_name = config('app.name', 'Mailwolt');
|
||||||
try {
|
try {
|
||||||
$this->timezone = Setting::get('timezone', 'Europe/Berlin');
|
$this->timezone = Setting::get('timezone', 'Europe/Berlin');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue