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
boban 2026-04-24 14:43:26 +02:00
parent ed176ec243
commit 32f43020d3
1 changed files with 0 additions and 4 deletions

View File

@ -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');