Get rid of noise in docker logs for missing favicon from the app, reset documentation and try and figure out how to render templates globally
This commit is contained in:
parent
0567bdd897
commit
f45c5a6551
@ -34,7 +34,7 @@ abstract class Controller
|
|||||||
$this->routeContext = RouteContext::fromRequest($this->request);
|
$this->routeContext = RouteContext::fromRequest($this->request);
|
||||||
$this->view = Twig::fromRequest($request);
|
$this->view = Twig::fromRequest($request);
|
||||||
|
|
||||||
return $this->handle($request, $response);
|
return $this->handle();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -45,7 +45,7 @@ abstract class Controller
|
|||||||
abstract public function handle(): Response;
|
abstract public function handle(): Response;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Render the given Template.
|
* Render the given Template.
|
||||||
*
|
*
|
||||||
* @param string $templateName The name of the template
|
* @param string $templateName The name of the template
|
||||||
* @param array $data The data for the template
|
* @param array $data The data for the template
|
||||||
|
@ -19,6 +19,7 @@ class LogoutUserAction extends Controller
|
|||||||
$this->session->delete('user');
|
$this->session->delete('user');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->session->getFlash()->add('notice', "Successfully logged out.");
|
||||||
return $this->redirect('/', 302);
|
return $this->redirect('/', 302);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
server {
|
server {
|
||||||
listen 80 default_server;
|
listen 80 default_server;
|
||||||
listen [::]:80 default_server;
|
listen [::]:80 default_server;
|
||||||
|
|
||||||
server_name slovocast;
|
server_name slovocast;
|
||||||
|
|
||||||
root /var/www/slovocast/public;
|
root /var/www/slovocast/public;
|
||||||
@ -11,6 +11,10 @@ server {
|
|||||||
try_files $uri $uri/ /index.php?$args;
|
try_files $uri $uri/ /index.php?$args;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
location /favicon.ico {
|
||||||
|
return 500;
|
||||||
|
}
|
||||||
|
|
||||||
location ~* \.php$ {
|
location ~* \.php$ {
|
||||||
fastcgi_pass php:9000;
|
fastcgi_pass php:9000;
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
|
Loading…
Reference in New Issue
Block a user