Error 404 Not Found

GET https://resasfa.elementroot.tech/.git/config

Forwarded to ErrorController (584565)

Exceptions

No route found for "GET https://resasfa.elementroot.tech/.git/config"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#11170
  -statusCode: 404
  -headers: []
}
  1. if ($referer = $request->headers->get('referer')) {
  2. $message .= \sprintf(' (from "%s")', $referer);
  3. }
  4. throw new NotFoundHttpException($message, $e);
  5. } catch (MethodNotAllowedException $e) {
  6. $message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
  7. throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
  8. }
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. $handler = function () use ($server, &$sfRequest, &$sfResponse): void {
  2. // Merge the environment variables coming from DotEnv with the ones tied to the current request
  3. $_SERVER += $server;
  4. $sfRequest = Request::createFromGlobals();
  5. $sfResponse = $this->kernel->handle($sfRequest);
  6. $sfResponse->send();
  7. };
  8. $loops = 0;
Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
in vendor/runtime/frankenphp-symfony/src/Runner.php frankenphp_handle_request (line 45)
  1. $sfResponse->send();
  2. };
  3. $loops = 0;
  4. do {
  5. $ret = \frankenphp_handle_request($handler);
  6. if ($this->kernel instanceof TerminableInterface && $sfRequest && $sfResponse) {
  7. $this->kernel->terminate($sfRequest, $sfResponse);
  8. }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/app/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/.git/config/".

  1. if ($allowSchemes) {
  2. goto redirect_scheme;
  3. }
  4. }
  5. throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));
  6. }
  7. private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
  8. {
  9. $allow = $allowSchemes = [];
  1. public function matchRequest(Request $request): array
  2. {
  3. $this->request = $request;
  4. $ret = $this->match($request->getPathInfo());
  5. $this->request = null;
  6. return $ret;
  7. }
in vendor/symfony/routing/Router.php -> matchRequest (line 188)
  1. if (!$matcher instanceof RequestMatcherInterface) {
  2. // fallback to the default UrlMatcherInterface
  3. return $matcher->match($request->getPathInfo());
  4. }
  5. return $matcher->matchRequest($request);
  6. }
  7. /**
  8. * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  9. */
  1. // add attributes based on the request (routing)
  2. try {
  3. // matching a request is more powerful than matching a URL path + context, so try that first
  4. if ($this->matcher instanceof RequestMatcherInterface) {
  5. $parameters = $this->matcher->matchRequest($request);
  6. } else {
  7. $parameters = $this->matcher->match($request->getPathInfo());
  8. }
  9. $this->logger?->info('Matched route "{route}".', [
  1. foreach ($listeners as $listener) {
  2. if ($stoppable && $event->isPropagationStopped()) {
  3. break;
  4. }
  5. $listener($event, $eventName, $this);
  6. }
  7. }
  8. /**
  9. * Sorts the internal list of listeners for the given event by priority.
  1. } else {
  2. $listeners = $this->getListeners($eventName);
  3. }
  4. if ($listeners) {
  5. $this->callListeners($listeners, $eventName, $event);
  6. }
  7. return $event;
  8. }
  1. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. $handler = function () use ($server, &$sfRequest, &$sfResponse): void {
  2. // Merge the environment variables coming from DotEnv with the ones tied to the current request
  3. $_SERVER += $server;
  4. $sfRequest = Request::createFromGlobals();
  5. $sfResponse = $this->kernel->handle($sfRequest);
  6. $sfResponse->send();
  7. };
  8. $loops = 0;
Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
in vendor/runtime/frankenphp-symfony/src/Runner.php frankenphp_handle_request (line 45)
  1. $sfResponse->send();
  2. };
  3. $loops = 0;
  4. do {
  5. $ret = \frankenphp_handle_request($handler);
  6. if ($this->kernel instanceof TerminableInterface && $sfRequest && $sfResponse) {
  7. $this->kernel->terminate($sfRequest, $sfResponse);
  8. }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/app/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 28

Level Message
info 01:24:49 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c8d944"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=request&type=request",
    "method": "GET"
}
info 01:24:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5459ac"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=http_client&type=request",
    "method": "GET"
}
info 01:24:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bb58c6"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=request&type=request",
    "method": "GET"
}
info 01:24:51 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "72dbb0"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=request&type=request",
    "method": "GET"
}
info 01:24:51 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dd65fc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=request&type=request",
    "method": "GET"
}
info 01:24:52 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2F_profiler",
    "method": "GET"
}
info 01:24:52 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "587f43"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=cache&type=request",
    "method": "GET"
}
info 01:25:55 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a1f13c"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=http_client&type=request",
    "method": "GET"
}
info 01:25:55 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "acd25b"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=request&type=request",
    "method": "GET"
}
info 01:25:56 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=cache&type=request",
    "method": "GET"
}
info 01:25:56 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=http_client&type=request",
    "method": "GET"
}
info 01:25:57 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5459ac"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=request&type=request",
    "method": "GET"
}
info 01:25:57 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "acd25b"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=cache&type=request",
    "method": "GET"
}
info 01:25:58 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "acd25b"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=http_client&type=request",
    "method": "GET"
}
info 01:25:58 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "587f43"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=request&type=request",
    "method": "GET"
}
info 01:26:15 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "72dbb0"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=exception&type=request",
    "method": "GET"
}
info 01:26:15 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c8d944"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=exception&type=request",
    "method": "GET"
}
info 01:26:15 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a1f13c"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=request&type=request",
    "method": "GET"
}
info 01:26:16 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "611363"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=http_client&type=request",
    "method": "GET"
}
info 01:26:16 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=cache&type=request",
    "method": "GET"
}
info 01:26:17 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=http_client&type=request",
    "method": "GET"
}
info 01:26:17 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a1f13c"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=cache&type=request",
    "method": "GET"
}
info 01:26:18 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=request&type=request",
    "method": "GET"
}
info 01:27:27 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "72dbb0"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=time&type=request",
    "method": "GET"
}
info 01:27:27 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c8d944"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=time&type=request",
    "method": "GET"
}
info 01:27:28 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2Frobots.txt",
    "method": "GET"
}
info 01:27:28 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=request&type=request",
    "method": "GET"
}
info 01:27:29 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "611363"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=cache&type=request",
    "method": "GET"
}
info 01:27:29 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "587f43"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=exception&type=request",
    "method": "GET"
}
info 01:27:30 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bb58c6"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=exception&type=request",
    "method": "GET"
}
info 01:27:30 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dd65fc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=exception&type=request",
    "method": "GET"
}
info 01:27:48 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5459ac"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=logger&type=request",
    "method": "GET"
}
info 01:27:49 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=exception&type=request",
    "method": "GET"
}
info 01:27:49 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dd65fc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=config&type=request",
    "method": "GET"
}
info 01:27:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bb58c6"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=config&type=request",
    "method": "GET"
}
info 01:27:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "72dbb0"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=config&type=request",
    "method": "GET"
}
info 01:27:51 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c8d944"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=config&type=request",
    "method": "GET"
}
info 01:27:54 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=time&type=request",
    "method": "GET"
}
info 01:27:54 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "587f43"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=logger&type=request",
    "method": "GET"
}
info 01:27:55 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dd65fc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=logger&type=request",
    "method": "GET"
}
info 01:27:56 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "72dbb0"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=logger&type=request",
    "method": "GET"
}
info 01:27:56 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c8d944"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=logger&type=request",
    "method": "GET"
}
info 01:27:57 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "acd25b"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=time&type=request",
    "method": "GET"
}
info 01:28:14 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "587f43"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=events&type=request",
    "method": "GET"
}
info 01:28:15 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bb58c6"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=twig&type=request",
    "method": "GET"
}
info 01:28:15 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "72dbb0"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=twig&type=request",
    "method": "GET"
}
info 01:28:16 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=logger&type=request",
    "method": "GET"
}
info 01:28:16 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c8d944"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=router&type=request",
    "method": "GET"
}
info 01:28:17 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=time&type=request",
    "method": "GET"
}
info 01:28:17 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "acd25b"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=config&type=request",
    "method": "GET"
}
info 01:29:05 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "587f43"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=router&type=request",
    "method": "GET"
}
info 01:29:06 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "587f43"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=twig&type=request",
    "method": "GET"
}
info 01:29:06 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dd65fc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=router&type=request",
    "method": "GET"
}
info 01:29:07 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dd65fc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=twig&type=request",
    "method": "GET"
}
info 01:29:07 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bb58c6"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=router&type=request",
    "method": "GET"
}
info 01:29:08 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "72dbb0"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=router&type=request",
    "method": "GET"
}
info 01:29:10 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5459ac"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=events&type=request",
    "method": "GET"
}
info 01:29:11 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "acd25b"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=events&type=request",
    "method": "GET"
}
info 01:29:11 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bb58c6"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=messenger&type=request",
    "method": "GET"
}
info 01:29:12 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "72dbb0"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=messenger&type=request",
    "method": "GET"
}
info 01:29:12 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "611363"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=time&type=request",
    "method": "GET"
}
info 01:29:13 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=config&type=request",
    "method": "GET"
}
info 01:29:13 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c8d944"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=messenger&type=request",
    "method": "GET"
}
info 01:29:58 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a1f13c"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=events&type=request",
    "method": "GET"
}
info 01:29:58 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=router&type=request",
    "method": "GET"
}
info 01:29:59 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "acd25b"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=messenger&type=request",
    "method": "GET"
}
info 01:29:59 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=twig&type=request",
    "method": "GET"
}
info 01:30:00 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=events&type=request",
    "method": "GET"
}
info 01:30:00 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=logger&type=request",
    "method": "GET"
}
info 01:30:22 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "611363"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=router&type=request",
    "method": "GET"
}
info 01:30:22 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=messenger&type=request",
    "method": "GET"
}
info 01:30:23 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "611363"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=twig&type=request",
    "method": "GET"
}
info 01:30:23 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "611363"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=events&type=request",
    "method": "GET"
}
info 01:30:24 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=router&type=request",
    "method": "GET"
}
info 01:30:24 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=twig&type=request",
    "method": "GET"
}
info 01:30:25 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a1f13c"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=messenger&type=request",
    "method": "GET"
}
info 01:30:32 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=events&type=request",
    "method": "GET"
}
info 01:30:33 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=messenger&type=request",
    "method": "GET"
}
info 01:30:33 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a1f13c"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=router&type=request",
    "method": "GET"
}
info 01:30:34 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a1f13c"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=twig&type=request",
    "method": "GET"
}
info 01:30:34 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "66330a"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/66330a?panel=config&type=request",
    "method": "GET"
}
info 01:30:35 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "611363"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=logger&type=request",
    "method": "GET"
}
info 01:30:58 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "72dbb0"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0/search/results?ip=62.113.113.43",
    "method": "GET"
}
info 01:30:59 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "587f43"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/587f43/search/results?ip=216.73.216.2",
    "method": "GET"
}
info 01:30:59 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?type=request&url=https%3A%2F%2Fresasfa.elementroot.tech%2Ffile%253A%2Fapp%2Fvendor%2Fsymfony%2Frouting%2FRouter.php%2523L188",
    "method": "GET"
}
error 01:31:00 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php%23L70"" at RouterListener.php line 156
{
    "exception": {}
}
info 01:31:00 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=103.4.250.16&type=request",
    "method": "GET"
}
info 01:31:01 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "611363"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=messenger&type=request",
    "method": "GET"
}
error 01:31:01 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Router.php%23L188"" at RouterListener.php line 156
{
    "exception": {}
}
info 01:31:44 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5459ac"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=config&type=request",
    "method": "GET"
}
info 01:31:44 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c8d944"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=twig&type=request",
    "method": "GET"
}
info 01:31:45 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "611363"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=exception&type=request",
    "method": "GET"
}
info 01:31:45 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dd65fc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=events&type=request",
    "method": "GET"
}
info 01:31:46 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bb58c6"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=events&type=request",
    "method": "GET"
}
info 01:31:46 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "72dbb0"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/72dbb0?panel=events&type=request",
    "method": "GET"
}
info 01:31:47 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c8d944"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c8d944?panel=events&type=request",
    "method": "GET"
}
info 01:31:47 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "acd25b"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=logger&type=request",
    "method": "GET"
}
info 01:31:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5459ac"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=router&type=request",
    "method": "GET"
}
info 01:31:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "acd25b"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=router&type=request",
    "method": "GET"
}
info 01:31:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "587f43"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=messenger&type=request",
    "method": "GET"
}
info 01:31:51 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5459ac"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=twig&type=request",
    "method": "GET"
}
info 01:31:51 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "a1f13c"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/a1f13c?panel=config&type=request",
    "method": "GET"
}
info 01:31:52 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "acd25b"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=twig&type=request",
    "method": "GET"
}
info 01:31:52 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dd65fc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=messenger&type=request",
    "method": "GET"
}
info 01:32:26 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "6f8787"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/6f8787?panel=exception&type=request",
    "method": "GET"
}
info 01:32:27 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5459ac"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=time&type=request",
    "method": "GET"
}
info 01:32:27 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "611363"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/611363?panel=request&type=request",
    "method": "GET"
}
info 01:32:28 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "acd25b"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/acd25b?panel=exception&type=request",
    "method": "GET"
}
info 01:32:28 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "587f43"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/587f43?panel=time&type=request",
    "method": "GET"
}
info 01:32:29 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5459ac"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/5459ac?panel=exception&type=request",
    "method": "GET"
}
info 01:32:29 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "dd65fc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/dd65fc?panel=time&type=request",
    "method": "GET"
}
info 01:32:30 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bb58c6"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6?panel=time&type=request",
    "method": "GET"
}
error 01:48:11 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 01:48:14 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
info 02:49:56 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 02:54:24 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 02:54:24 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "edf4bc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=cache&type=request",
    "method": "GET"
}
info 02:54:25 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c5f7be"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c5f7be",
    "method": "GET"
}
info 02:54:25 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "593e07"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/593e07",
    "method": "GET"
}
info 02:54:29 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=cache&type=request",
    "method": "GET"
}
info 02:54:29 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "edf4bc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=request&type=request",
    "method": "GET"
}
info 02:54:30 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "edf4bc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=http_client&type=request",
    "method": "GET"
}
info 02:55:30 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=http_client&type=request",
    "method": "GET"
}
info 02:55:30 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=request&type=request",
    "method": "GET"
}
info 02:55:30 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=http_client&type=request",
    "method": "GET"
}
info 02:55:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "edf4bc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=time&type=request",
    "method": "GET"
}
info 02:55:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c1a042"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=cache&type=request",
    "method": "GET"
}
info 02:55:50 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "edf4bc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=exception&type=request",
    "method": "GET"
}
info 02:56:07 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c1a042"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=http_client&type=request",
    "method": "GET"
}
info 02:56:08 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=request&type=request",
    "method": "GET"
}
info 02:56:08 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=cache&type=request",
    "method": "GET"
}
info 02:56:42 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=time&type=request",
    "method": "GET"
}
info 02:56:42 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=exception&type=request",
    "method": "GET"
}
info 02:56:43 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c1a042"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=request&type=request",
    "method": "GET"
}
info 02:57:04 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "edf4bc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=config&type=request",
    "method": "GET"
}
info 02:57:04 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=exception&type=request",
    "method": "GET"
}
info 02:57:04 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "edf4bc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=logger&type=request",
    "method": "GET"
}
info 02:57:24 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=logger&type=request",
    "method": "GET"
}
info 02:57:24 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c1a042"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=exception&type=request",
    "method": "GET"
}
info 02:57:24 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=time&type=request",
    "method": "GET"
}
info 02:58:05 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c1a042"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=time&type=request",
    "method": "GET"
}
info 02:58:05 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=config&type=request",
    "method": "GET"
}
info 02:58:05 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "edf4bc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=events&type=request",
    "method": "GET"
}
info 02:58:18 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=logger&type=request",
    "method": "GET"
}
info 02:58:19 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "edf4bc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=twig&type=request",
    "method": "GET"
}
info 02:58:27 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=events&type=request",
    "method": "GET"
}
info 02:58:27 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "edf4bc"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/edf4bc?panel=messenger&type=request",
    "method": "GET"
}
info 02:58:52 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=twig&type=request",
    "method": "GET"
}
info 02:58:53 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=config&type=request",
    "method": "GET"
}
info 02:59:49 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=router&type=request",
    "method": "GET"
}
info 02:59:53 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=twig&type=request",
    "method": "GET"
}
info 02:59:53 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99?panel=messenger&type=request",
    "method": "GET"
}
info 02:59:59 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c1a042"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=twig&type=request",
    "method": "GET"
}
info 03:00:00 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=messenger&type=request",
    "method": "GET"
}
info 03:00:10 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c1a042"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=messenger&type=request",
    "method": "GET"
}
info 03:00:10 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c1a042"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=router&type=request",
    "method": "GET"
}
info 03:01:02 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "28fd99"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/28fd99/search/results?ip=103.4.250.16",
    "method": "GET"
}
info 03:01:13 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "c1a042"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042/search/results?ip=216.73.216.2",
    "method": "GET"
}
info 03:01:13 Matched route "_profiler_search_results".
{
    "route": "_profiler_search_results",
    "route_parameters": {
        "_route": "_profiler_search_results",
        "_controller": "web_profiler.controller.profiler::searchResultsAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82/search/results?ip=216.73.216.2",
    "method": "GET"
}
info 03:01:17 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c1a042"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=events&type=request",
    "method": "GET"
}
info 03:01:17 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=router&type=request",
    "method": "GET"
}
info 03:01:37 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "c1a042"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/c1a042?panel=config&type=request",
    "method": "GET"
}
info 03:01:37 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8b2d82"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/8b2d82?panel=events&type=request",
    "method": "GET"
}
info 03:01:59 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "fa48af"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/fa48af",
    "method": "GET"
}
info 03:02:28 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bc6e16"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=cache&type=request",
    "method": "GET"
}
info 03:02:34 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bc6e16"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=http_client&type=request",
    "method": "GET"
}
info 03:03:10 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bc6e16"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=request&type=request",
    "method": "GET"
}
info 03:03:15 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bc6e16"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=exception&type=request",
    "method": "GET"
}
info 03:03:40 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bc6e16"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=time&type=request",
    "method": "GET"
}
info 03:04:11 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bc6e16"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=logger&type=request",
    "method": "GET"
}
info 03:04:17 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bc6e16"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=config&type=request",
    "method": "GET"
}
info 03:04:32 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bc6e16"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=events&type=request",
    "method": "GET"
}
info 03:05:07 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bc6e16"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bc6e16?panel=twig&type=request",
    "method": "GET"
}
info 03:05:43 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 03:05:44 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/backend/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:43 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:43 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.bak"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:44 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.save"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:44 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.backup"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:44 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/admin/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:44 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/config"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:45 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:45 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/config.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:45 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/aws-config.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:45 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/aws.config.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:45 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/_debugbar/"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:46 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/debugbar/"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:46 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/debug/"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:46 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/phpinfo.php"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:46 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/info.php"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:46 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/test.php"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:46 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.aws/credentials"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:47 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.aws/config"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:47 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/aws-credentials"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:48 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/aws.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:48 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.s3cfg"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:48 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/HEAD"" at RouterListener.php line 156
{
    "exception": {}
}
error 03:05:48 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/config"" at RouterListener.php line 156
{
    "exception": {}
}
info 03:05:49 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/latest?ip=62.113.113.43&type=request",
    "method": "GET"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://resasfa.elementroot.tech/.git/config"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:38)
  at Runtime\FrankenPhpSymfony\Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
  at frankenphp_handle_request(object(Closure))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:45)
  at Runtime\FrankenPhpSymfony\Runner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/app/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/.git/config/".

  at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/.git/config/')
     (vendor/symfony/routing/Matcher/UrlMatcher.php:89)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
     (vendor/symfony/routing/Router.php:188)
  at Symfony\Component\Routing\Router->matchRequest(object(Request))
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:38)
  at Runtime\FrankenPhpSymfony\Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
  at frankenphp_handle_request(object(Closure))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:45)
  at Runtime\FrankenPhpSymfony\Runner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/app/vendor/autoload_runtime.php')
     (public/index.php:5)