/**
* Find the given view in the list of paths.
*
* @param string $name
* @param array $paths
* @return string
*
* @throws \InvalidArgumentException
*/
protected function findInPaths($name, $paths)
{
foreach ((array) $paths as $path) {
foreach ($this->getPossibleViewFiles($name) as $file) {
if ($this->files->exists($viewPath = $path.'/'.$file)) {
return $viewPath;
}
}
}
throw new InvalidArgumentException("View [$name] not found.");
}
/**
* Get an array of possible view files.
*
* @param string $name
* @return array
*/
protected function getPossibleViewFiles($name)
{
return array_map(function ($extension) use ($name) {
return str_replace('.', '/', $name).'.'.$extension;
}, $this->extensions);
}
/**
* Add a location to the finder.
*
* @param string $location
* @return void
"View [2018.day1] not found."
}
}
/**
* Get the fully qualified location of the view.
*
* @param string $name
* @return string
*/
public function find($name)
{
if (isset($this->views[$name])) {
return $this->views[$name];
}
if ($this->hasHintInformation($name = trim($name))) {
return $this->views[$name] = $this->findNamespacedView($name);
}
return $this->views[$name] = $this->findInPaths($name, $this->paths);
}
/**
* Get the path to a template with a named path.
*
* @param string $name
* @return string
*/
protected function findNamespacedView($name)
{
list($namespace, $view) = $this->parseNamespaceSegments($name);
return $this->findInPaths($view, $this->hints[$namespace]);
}
/**
* Get the segments of a template with a named path.
*
* @param string $name
* @return array
"2018.day1"
array:1 [ 0 => "/app/resources/views" ]
{
$data = array_merge($mergeData, $this->parseData($data));
return tap($this->viewInstance($path, $path, $data), function ($view) {
$this->callCreator($view);
});
}
/**
* Get the evaluated view contents for the given view.
*
* @param string $view
* @param array $data
* @param array $mergeData
* @return \Illuminate\Contracts\View\View
*/
public function make($view, $data = [], $mergeData = [])
{
$path = $this->finder->find(
$view = $this->normalizeName($view)
);
// Next, we will create the view instance and call the view creator for the view
// which can set any data, etc. Then we will return the view instance back to
// the caller for rendering or performing other view manipulations on this.
$data = array_merge($mergeData, $this->parseData($data));
return tap($this->viewInstance($view, $path, $data), function ($view) {
$this->callCreator($view);
});
}
/**
* Get the first view that actually exists from the given list.
*
* @param array $views
* @param array $data
* @param array $mergeData
* @return \Illuminate\Contracts\View\View
*/
"2018.day1"
}
if (! function_exists('view')) {
/**
* Get the evaluated view contents for the given view.
*
* @param string $view
* @param array $data
* @param array $mergeData
* @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory
*/
function view($view = null, $data = [], $mergeData = [])
{
$factory = app(ViewFactory::class);
if (func_num_args() === 0) {
return $factory;
}
return $factory->make($view, $data, $mergeData);
}
}
"2018.day1"
[]
[]
}
/**
* Retorna a Home do Public com os Cadernos de Prova.
*
* @return \Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application|\Illuminate\Http\Response|\Illuminate\View\View
*/
public function cadernos($ano = null, $dia = 1)
{
$data = $this->returnDays($ano, $dia);
return view($data['ano_ativo'].'.home' )
->with($data);
}
public function cadernosDias($ano, $dia)
{
$data = $this->returnDays($ano, $dia);
return view($data['ano_ativo'].'.day' . $dia )
->with($data);
}
/**
* Retorna a Home do Public com os Cadernos de Prova.
*
* @return \Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application|\Illuminate\Http\Response|\Illuminate\View\View
*/
public function ano($ano)
{
$ano_ativo = ($ano) ?: Ano::where('status', 1)->pluck('ano')->first();
$cadernos_dias = [
1 => Caderno::where('dia', 1)->where('ano', $ano_ativo)->withCount('Questao')->get(),
2 => Caderno::where('dia', 2)->where('ano', $ano_ativo)->withCount('Questao')->get()
];
$aviso = Videos::orderBy('created_at', 'desc')->first();
$videos_comentarios = $this->getVideos();
"2018.day1"
/**
* Get the middleware assigned to the controller.
*
* @return array
*/
public function getMiddleware()
{
return $this->middleware;
}
/**
* Execute an action on the controller.
*
* @param string $method
* @param array $parameters
* @return \Symfony\Component\HttpFoundation\Response
*/
public function callAction($method, $parameters)
{
return call_user_func_array([$this, $method], $parameters);
}
/**
* Handle calls to missing methods on the controller.
*
* @param string $method
* @param array $parameters
* @return mixed
*
* @throws \BadMethodCallException
*/
public function __call($method, $parameters)
{
throw new BadMethodCallException("Method [{$method}] does not exist on [".get_class($this).'].');
}
}
"2018"
"1"
/**
* Get the middleware assigned to the controller.
*
* @return array
*/
public function getMiddleware()
{
return $this->middleware;
}
/**
* Execute an action on the controller.
*
* @param string $method
* @param array $parameters
* @return \Symfony\Component\HttpFoundation\Response
*/
public function callAction($method, $parameters)
{
return call_user_func_array([$this, $method], $parameters);
}
/**
* Handle calls to missing methods on the controller.
*
* @param string $method
* @param array $parameters
* @return mixed
*
* @throws \BadMethodCallException
*/
public function __call($method, $parameters)
{
throw new BadMethodCallException("Method [{$method}] does not exist on [".get_class($this).'].');
}
}
array:2 [ 0 => PublicController {#1152} 1 => "cadernosDias" ]
array:2 [ "ano" => "2018" "dia" => "1" ]
{
$this->container = $container;
}
/**
* Dispatch a request to a given controller and method.
*
* @param \Illuminate\Routing\Route $route
* @param mixed $controller
* @param string $method
* @return mixed
*/
public function dispatch(Route $route, $controller, $method)
{
$parameters = $this->resolveClassMethodDependencies(
$route->parametersWithoutNulls(), $controller, $method
);
if (method_exists($controller, 'callAction')) {
return $controller->callAction($method, $parameters);
}
return $controller->{$method}(...array_values($parameters));
}
/**
* Get the middleware for the controller instance.
*
* @param \Illuminate\Routing\Controller $controller
* @param string $method
* @return array
*/
public function getMiddleware($controller, $method)
{
if (! method_exists($controller, 'getMiddleware')) {
return [];
}
return collect($controller->getMiddleware())->reject(function ($data) use ($method) {
return static::methodExcludedByOptions($method, $data['options']);
"cadernosDias"
array:2 [ "ano" => "2018" "dia" => "1" ]
protected function runCallable()
{
$callable = $this->action['uses'];
return $callable(...array_values($this->resolveMethodDependencies(
$this->parametersWithoutNulls(), new ReflectionFunction($this->action['uses'])
)));
}
/**
* Run the route action and return the response.
*
* @return mixed
*
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
protected function runController()
{
return $this->controllerDispatcher()->dispatch(
$this, $this->getController(), $this->getControllerMethod()
);
}
/**
* Get the controller instance for the route.
*
* @return mixed
*/
public function getController()
{
if (! $this->controller) {
$class = $this->parseControllerCallback()[0];
$this->controller = $this->container->make(ltrim($class, '\\'));
}
return $this->controller;
}
/**
*
* @throws \UnexpectedValueException
*/
protected function parseAction($action)
{
return RouteAction::parse($this->uri, $action);
}
/**
* Run the route action and return the response.
*
* @return mixed
*/
public function run()
{
$this->container = $this->container ?: new Container;
try {
if ($this->isControllerAction()) {
return $this->runController();
}
return $this->runCallable();
} catch (HttpResponseException $e) {
return $e->getResponse();
}
}
/**
* Checks whether the route's action is a controller.
*
* @return bool
*/
protected function isControllerAction()
{
return is_string($this->action['uses']);
}
/**
* Run the route action and return the response.
/**
* Run the given route within a Stack "onion" instance.
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(function ($request) use ($route) {
return $this->prepareResponse(
$request, $route->run()
);
});
}
/**
* Gather the middleware for the given route with resolved class names.
*
* @param \Illuminate\Routing\Route $route
* @return array
*/
public function gatherRouteMiddleware(Route $route)
{
$middleware = collect($route->gatherMiddleware())->map(function ($name) {
return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);
})->flatten();
return $this->sortMiddleware($middleware);
}
/**
use Symfony\Component\Debug\Exception\FatalThrowableError;
/**
* This extended pipeline catches any exceptions that occur during each slice.
*
* The exceptions are converted to HTTP responses for proper middleware handling.
*/
class Pipeline extends BasePipeline
{
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
*/
public function __construct(Registrar $router)
{
$this->router = $router;
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$this->router->substituteBindings($route = $request->route());
$this->router->substituteImplicitBindings($route);
return $next($request);
}
}
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
return method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
$parameters = explode(',', $parameters);
}
return [$name, $parameters];
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Closure {#1153 : "Illuminate\Routing\Pipeline" : Pipeline {#1142 …} : { : {} } : { : Closure {#1147 …} } }
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*
* @throws \Illuminate\Session\TokenMismatchException
*/
public function handle($request, Closure $next)
{
if (
$this->isReading($request) ||
$this->runningUnitTests() ||
$this->inExceptArray($request) ||
$this->tokensMatch($request)
) {
return $this->addCookieToResponse($request, $next($request));
}
throw new TokenMismatchException;
}
/**
* Determine if the HTTP request uses a ‘read’ verb.
*
* @param \Illuminate\Http\Request $request
* @return bool
*/
protected function isReading($request)
{
return in_array($request->method(), ['HEAD', 'GET', 'OPTIONS']);
}
/**
* Determine if the application is running unit tests.
*
* @return bool
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
return method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
$parameters = explode(',', $parameters);
}
return [$name, $parameters];
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Closure {#1165 : "Illuminate\Routing\Pipeline" : Pipeline {#1142 …} : { : {} } : { : Closure {#1153 …} : "Illuminate\Routing\Middleware\SubstituteBindings" } }
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
// If the current session has an "errors" variable bound to it, we will share
// its value with all view instances so the views can easily access errors
// without having to bind. An empty bag is set when there aren't errors.
$this->view->share(
'errors', $request->session()->get('errors') ?: new ViewErrorBag
);
// Putting the errors in the view for every view allows the developer to just
// assume that some errors are always available, which is convenient since
// they don't have to continually run checks for the presence of errors.
return $next($request);
}
}
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
return method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
$parameters = explode(',', $parameters);
}
return [$name, $parameters];
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Closure {#1171 : "Illuminate\Routing\Pipeline" : Pipeline {#1142 …} : { : {} } : { : Closure {#1165 …} : "App\Http\Middleware\VerifyCsrfToken" } }
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$this->sessionHandled = true;
// If a session driver has been configured, we will need to start the session here
// so that the data is ready for an application. Note that the Laravel sessions
// do not make use of PHP "native" sessions in any way since they are crappy.
if ($this->sessionConfigured()) {
$request->setLaravelSession(
$session = $this->startSession($request)
);
$this->collectGarbage($session);
}
$response = $next($request);
// Again, if the session has been configured we will need to close out the session
// so that the attributes may be persisted to some storage medium. We will also
// add the session identifier cookie to the application response headers now.
if ($this->sessionConfigured()) {
$this->storeCurrentUrl($request, $session);
$this->addCookieToResponse($response, $session);
}
return $response;
}
/**
* Perform any final actions for the request lifecycle.
*
* @param \Illuminate\Http\Request $request
* @param \Symfony\Component\HttpFoundation\Response $response
* @return void
*/
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
return method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
$parameters = explode(',', $parameters);
}
return [$name, $parameters];
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Closure {#1175 : "Illuminate\Routing\Pipeline" : Pipeline {#1142 …} : { : {} } : { : Closure {#1171 …} : "Illuminate\View\Middleware\ShareErrorsFromSession" } }
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
* Create a new CookieQueue instance.
*
* @param \Illuminate\Contracts\Cookie\QueueingFactory $cookies
* @return void
*/
public function __construct(CookieJar $cookies)
{
$this->cookies = $cookies;
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$response = $next($request);
foreach ($this->cookies->getQueuedCookies() as $cookie) {
$response->headers->setCookie($cookie);
}
return $response;
}
}
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
return method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
$parameters = explode(',', $parameters);
}
return [$name, $parameters];
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Closure {#1174 : "Illuminate\Routing\Pipeline" : Pipeline {#1142 …} : { : {} } : { : Closure {#1175 …} : "Illuminate\Session\Middleware\StartSession" } }
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
* Disable encryption for the given cookie name(s).
*
* @param string|array $cookieName
* @return void
*/
public function disableFor($cookieName)
{
$this->except = array_merge($this->except, (array) $cookieName);
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
return $this->encrypt($next($this->decrypt($request)));
}
/**
* Decrypt the cookies on the request.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @return \Symfony\Component\HttpFoundation\Request
*/
protected function decrypt(Request $request)
{
foreach ($request->cookies as $key => $cookie) {
if ($this->isDisabled($key)) {
continue;
}
try {
$decryptedValue = $this->decryptCookie($key, $cookie);
$value = CookieValuePrefix::getVerifiedValue($key, $decryptedValue, $this->encrypter->getKey());
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
return method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
$parameters = explode(',', $parameters);
}
return [$name, $parameters];
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Closure {#1173 : "Illuminate\Routing\Pipeline" : Pipeline {#1142 …} : { : {} } : { : Closure {#1174 …} : "Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse" } }
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
public function via($method)
{
$this->method = $method;
return $this;
}
/**
* Run the pipeline with a final destination callback.
*
* @param \Closure $destination
* @return mixed
*/
public function then(Closure $destination)
{
$pipeline = array_reduce(
array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
return $destination($passable);
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(function ($request) use ($route) {
return $this->prepareResponse(
$request, $route->run()
);
});
}
/**
* Gather the middleware for the given route with resolved class names.
*
* @param \Illuminate\Routing\Route $route
* @return array
*/
public function gatherRouteMiddleware(Route $route)
{
$middleware = collect($route->gatherMiddleware())->map(function ($name) {
return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);
})->flatten();
return $this->sortMiddleware($middleware);
}
/**
* Sort the given middleware by priority.
*
return $route;
}
/**
* Return the response for the given route.
*
* @param Route $route
* @param Request $request
* @return mixed
*/
protected function runRoute(Request $request, Route $route)
{
$request->setRouteResolver(function () use ($route) {
return $route;
});
$this->events->dispatch(new Events\RouteMatched($route, $request));
return $this->prepareResponse($request,
$this->runRouteWithinStack($route, $request)
);
}
/**
* Run the given route within a Stack "onion" instance.
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
Route {#167}
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Routing\Route
*/
protected function findRoute($request)
{
$this->current = $route = $this->routes->match($request);
$this->container->instance(Route::class, $route);
return $route;
}
/**
* Return the response for the given route.
*
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Route {#167}
* @return mixed
*/
public function respondWithRoute($name)
{
$route = tap($this->routes->getByName($name))->bind($this->currentRequest);
return $this->runRoute($this->currentRequest, $route);
}
/**
* Dispatch the request to the application.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Routing\Route
*/
protected function findRoute($request)
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
* Get the route dispatcher callback.
*
* @return \Closure
*/
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Http\Response $response
* @return void
*/
public function terminate($request, $response)
{
$this->terminateMiddleware($request, $response);
$this->app->terminate();
}
/**
* Call the terminate method on any terminable middleware.
*
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
use Symfony\Component\Debug\Exception\FatalThrowableError;
/**
* This extended pipeline catches any exceptions that occur during each slice.
*
* The exceptions are converted to HTTP responses for proper middleware handling.
*/
class Pipeline extends BasePipeline
{
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
{
$this->config = $config;
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
*
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*
* @return mixed
*/
public function handle($request, Closure $next)
{
$this->setTrustedProxyHeaderNames($request);
$this->setTrustedProxyIpAddresses($request);
return $next($request);
}
/**
* Sets the trusted proxies on the request to the value of trustedproxy.proxies
*
* @param \Illuminate\Http\Request $request
*/
protected function setTrustedProxyIpAddresses($request)
{
$trustedIps = $this->proxies ?: $this->config->get('trustedproxy.proxies');
// We only trust specific IP addresses
if (is_array($trustedIps)) {
return $this->setTrustedProxyIpAddressesToSpecificIps($request, $trustedIps);
}
// We trust any IP address that calls us, but not proxies further
// up the forwarding chain.
// TODO: Determine if this should only trust the first IP address
// Currently it trusts the entire chain (array of IPs),
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
return method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
$parameters = explode(',', $parameters);
}
return [$name, $parameters];
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Closure {#154 : "Illuminate\Routing\Pipeline" : Pipeline {#33 …} : { : {} } : { : Closure {#22 …} } }
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
* The additional attributes passed to the middleware.
*
* @var array
*/
protected $attributes = [];
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next, ...$attributes)
{
$this->attributes = $attributes;
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
* @param \Illuminate\Http\Request $request
* @return void
*/
protected function clean($request)
{
$this->cleanParameterBag($request->query);
if ($request->isJson()) {
$this->cleanParameterBag($request->json());
} else {
$this->cleanParameterBag($request->request);
}
}
/**
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
return method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
$parameters = explode(',', $parameters);
}
return [$name, $parameters];
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Closure {#155 : "Illuminate\Routing\Pipeline" : Pipeline {#33 …} : { : {} } : { : Closure {#154 …} : "App\Http\Middleware\TrustProxies" } }
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
* The additional attributes passed to the middleware.
*
* @var array
*/
protected $attributes = [];
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next, ...$attributes)
{
$this->attributes = $attributes;
$this->clean($request);
return $next($request);
}
/**
* Clean the request's data.
*
* @param \Illuminate\Http\Request $request
* @return void
*/
protected function clean($request)
{
$this->cleanParameterBag($request->query);
if ($request->isJson()) {
$this->cleanParameterBag($request->json());
} else {
$this->cleanParameterBag($request->request);
}
}
/**
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
return method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
$parameters = explode(',', $parameters);
}
return [$name, $parameters];
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Closure {#188 : "Illuminate\Routing\Pipeline" : Pipeline {#33 …} : { : {} } : { : Closure {#155 …} : "Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull" } }
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
class ValidatePostSize
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*
* @throws \Illuminate\Http\Exceptions\PostTooLargeException
*/
public function handle($request, Closure $next)
{
$max = $this->getPostMaxSize();
if ($max > 0 && $request->server('CONTENT_LENGTH') > $max) {
throw new PostTooLargeException;
}
return $next($request);
}
/**
* Determine the server 'post_max_size' as bytes.
*
* @return int
*/
protected function getPostMaxSize()
{
if (is_numeric($postMaxSize = ini_get('post_max_size'))) {
return (int) $postMaxSize;
}
$metric = strtoupper(substr($postMaxSize, -1));
$postMaxSize = (int) $postMaxSize;
switch ($metric) {
case 'K':
return $postMaxSize * 1024;
case 'M':
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
return method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
$parameters = explode(',', $parameters);
}
return [$name, $parameters];
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Closure {#189 : "Illuminate\Routing\Pipeline" : Pipeline {#33 …} : { : {} } : { : Closure {#188 …} : "App\Http\Middleware\TrimStrings" } }
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
}
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*/
public function handle($request, Closure $next)
{
if ($this->app->isDownForMaintenance()) {
$data = json_decode(file_get_contents($this->app->storagePath().'/framework/down'), true);
throw new MaintenanceModeException($data['time'], $data['retry'], $data['message']);
}
return $next($request);
}
}
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
// the appropriate method and arguments, returning the results back out.
return $pipe($passable, $stack);
} elseif (! is_object($pipe)) {
list($name, $parameters) = $this->parsePipeString($pipe);
// If the pipe is a string we will parse the string and resolve the class out
// of the dependency injection container. We can then build a callable and
// execute the pipe function giving in the parameters that are required.
$pipe = $this->getContainer()->make($name);
$parameters = array_merge([$passable, $stack], $parameters);
} else {
// If the pipe is already an object we'll just make a callable and pass it to
// the pipe as-is. There is no need to do any extra parsing and formatting
// since the object we're given was already a fully instantiated object.
$parameters = [$passable, $stack];
}
return method_exists($pipe, $this->method)
? $pipe->{$this->method}(...$parameters)
: $pipe(...$parameters);
};
};
}
/**
* Parse full pipe string to get name and parameters.
*
* @param string $pipe
* @return array
*/
protected function parsePipeString($pipe)
{
list($name, $parameters) = array_pad(explode(':', $pipe, 2), 2, []);
if (is_string($parameters)) {
$parameters = explode(',', $parameters);
}
return [$name, $parameters];
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Closure {#1126 : "Illuminate\Routing\Pipeline" : Pipeline {#33 …} : { : {} } : { : Closure {#189 …} : "Illuminate\Foundation\Http\Middleware\ValidatePostSize" } }
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
$callable = $slice($stack, $pipe);
return $callable($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
};
}
/**
* Handle the given exception.
*
* @param mixed $passable
* @param \Exception $e
* @return mixed
*
* @throws \Exception
*/
protected function handleException($passable, Exception $e)
{
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
public function via($method)
{
$this->method = $method;
return $this;
}
/**
* Run the pipeline with a final destination callback.
*
* @param \Closure $destination
* @return mixed
*/
public function then(Closure $destination)
{
$pipeline = array_reduce(
array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
return $destination($passable);
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
}
/**
* Send the given request through the middleware / router.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
protected function sendRequestThroughRouter($request)
{
$this->app->instance('request', $request);
Facade::clearResolvedInstance('request');
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
* Get the route dispatcher callback.
*
* @return \Closure
*/
protected function dispatchToRouter()
$router->middlewareGroup($key, $middleware);
}
foreach ($this->routeMiddleware as $key => $middleware) {
$router->aliasMiddleware($key, $middleware);
}
}
/**
* Handle an incoming HTTP request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function handle($request)
{
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Exception $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
} catch (Throwable $e) {
$this->reportException($e = new FatalThrowableError($e));
$response = $this->renderException($request, $e);
}
$this->app['events']->dispatch(
new Events\RequestHandled($request, $response)
);
return $response;
}
/**
* Send the given request through the middleware / router.
*
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
*/
$app = require_once __DIR__.'/../bootstrap/app.php';
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
Request {#42 #json: null #convertedFiles: null #userResolver: Closure {#1143 : "Illuminate\Auth\AuthServiceProvider" : AuthServiceProvider {#41 …} : { : { : null } } : { : Application {#2 …} } } #routeResolver: Closure {#1145 : "Illuminate\Routing\Router" : Router {#25 …} : { : Route {#167 …} } } +attributes: ParameterBag {#44} +request: ParameterBag {#50} +query: ParameterBag {#50} +server: ServerBag {#46} +files: FileBag {#47} +cookies: ParameterBag {#45} +headers: HeaderBag {#48} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: "/2018/dia/1" #requestUri: "/2018/dia/1" #baseUrl: "" #basePath: null #method: "GET" #format: null #session: Store {#1186} #locale: null #defaultLocale: "en" -isHostValid: true -isForwardedValid: true : "" : "html" }
Key | Value |
XSRF-TOKEN | "eyJpdiI6Iks5MURwS0x3c2txUVVzNVRPNFZCbUE9PSIsInZhbHVlIjoidlROQUVnVHdSMGliVG5qUitXTWhXXC9NdE15SHdUbmRxazh1SjJHd3U3dHlTa1NMbDA3bkVvY25oNWdiNitFTjUiLCJtYWMiOiI3MmY2YjZiZjVkZmZmNGViYjBkZmVjNzQ4YmVlMTM4NzQzZjZkMjJiZTFhZDM2YTdmN2ViYWY4OTlkYTI4MmI1In0="
|
resolve_session | "eyJpdiI6IlpyQkFTd3ZDcXpOWUVuMmVQeXpqd2c9PSIsInZhbHVlIjoiYmNCMlRqVno4RWYyK0JVejdNTGJcL3ArSE9NbEI1YW5MVXlUZnByUG4xR1h5Vng3TjY1TGhFVWdlU0NRcEZ5NFpUZm55bFdnTHI2QTErNDM5TmxnRU1PNnFxYUEwOE5lRDBBbjlHdk5nZFRsVDd3WXhGbWFlTFlLTU9NUWM5amFGIiwibWFjIjoiZTUwN2QyY2VlMTM4NWFkMzg4MjRlMWQ0NjEzODUzOWM2YmE0OTM3ZThiNTgyMTVkOGQ4NjIyNmE5ZDNiNmIyNiJ9"
|
Key | Value |
RESOLVE_ADM_V2_FPM_PORT_9000_TCP_ADDR | "10.0.118.144"
|
LICENSE_API_V1_PORT_8081_TCP_PORT | "8081"
|
PROFILE_V2_PORT_8081_TCP_PORT | "8081"
|
PROFILE_API_V1_PORT_8081_TCP_PORT | "8081"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_SERVICE_HOST | "10.0.19.0"
|
ONEROSTER_API_V1_SERVICE_HOST | "10.0.148.24"
|
QUANTBOT_API_V0_PORT_80_TCP_ADDR | "10.0.13.35"
|
REDIS_PORT | "6380"
|
EM_BREVE | "false"
|
KUBERNETES_SERVICE_PORT | "443"
|
RESOLVE_V1_WEB_SERVICE_PORT_HTTP | "8088"
|
ONEROSTER_API_V1_PORT_8081_TCP_ADDR | "10.0.148.24"
|
ASSIGNMENT_API_V1_PORT_8081_TCP | "tcp://10.0.223.12:8081"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_8081_TCP_ADDR | "10.0.19.0"
|
PORTAL_CLIENTE_V1_PORT_8081_TCP_PORT | "8081"
|
ADAPTIVE_LEARNING_API_V1_PORT_8081_TCP_PORT | "8081"
|
ONBOARDING_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CALENDAR_API_V1_PORT_80_TCP_PORT | "80"
|
ONBOARDING_TOPIC_CONSUMER_V1_SERVICE_PORT_HTTP_PORT | "80"
|
LICENSE_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ONBOARDING_V1_SERVICE_PORT | "80"
|
KUBERNETES_PORT | "tcp://10.0.0.1:443"
|
RESOLVE_ADM_V3_FPM_PORT_9000_TCP_ADDR | "10.0.46.199"
|
RESOLVE_ADM_V1_WEB_SERVICE_HOST | "10.0.15.247"
|
ASSIGNMENT_API_V1_PORT_80_TCP_ADDR | "10.0.223.12"
|
ONBOARDING_V1_PORT | "tcp://10.0.138.213:80"
|
PROFILE_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
GESTAO_USUARIOS_API_V1_PORT_8081_TCP_PORT | "8081"
|
PROFILE_V2_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V1_FPM_PORT_9000_TCP_PORT | "9000"
|
CALENDAR_API_V1_PORT_80_TCP_PROTO | "tcp"
|
ADAPTIVE_LEARNING_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
CUSTOMER_API_V1_SERVICE_HOST | "10.0.49.67"
|
CANVAS_LAYERS_API_V1_PORT_80_TCP_ADDR | "10.0.203.211"
|
CANVAS_LAYERS_API_V1_PORT_8081_TCP | "tcp://10.0.203.211:8081"
|
PERFORMANCE_REPORT_API_V1_PORT_8081_TCP_PORT | "8081"
|
MICROSERVICE_MENU_API_V1_PORT_80_TCP_ADDR | "10.0.3.211"
|
LTI_LAUNCH_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
CANVAS_SYNC_API_V1_PORT_8081_TCP_PORT | "8081"
|
EVENT_API_V1_PORT_80_TCP_ADDR | "10.0.115.82"
|
GESTAO_USUARIOS_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
INTEGRACAO_CANVAS_V1_SERVICE_HOST | "10.0.197.100"
|
MICROSERVICE_MENU_API_V1_PORT_8081_TCP | "tcp://10.0.3.211:8081"
|
CHANNEL_API_V1_PORT_8081_TCP_PORT | "8081"
|
CONTENTS_API_V1_PORT_8081_TCP_PORT | "8081"
|
EVENT_API_V1_PORT_8081_TCP | "tcp://10.0.115.82:8081"
|
RESOLVE_ADM_V2_WEB_SERVICE_HOST | "10.0.94.156"
|
RESOLVE_V2_WEB_SERVICE_PORT_HTTP | "8088"
|
ECOMMERCE_API_V1_PORT_80_TCP_PORT | "80"
|
PORTAL_CLIENTE_V1_PORT_8081_TCP_PROTO | "tcp"
|
DOMAIN_PUBLIC | "resolve.ftd.com.br"
|
APP_DEBUG | "true"
|
MAIL_USERNAME | "Education"
|
PROFILE_API_V1_PORT | "tcp://10.0.18.240:80"
|
CHANNEL_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V2_FPM_PORT_9000_TCP_PORT | "9000"
|
ECOMMERCE_API_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V3_WEB_SERVICE_PORT_HTTP | "8088"
|
PROFILE_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CANVAS_SYNC_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
PROFILE_V2_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
LICENSE_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
LICENSE_API_V1_PORT | "tcp://10.0.222.113:80"
|
RESOLVE_ADM_V3_WEB_SERVICE_HOST | "10.0.212.37"
|
RESOLVE_ADM_V1_FPM_PORT_9000_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V5_FPM_PORT_9000_TCP_ADDR | "10.0.185.113"
|
INTEGRACAO_CANVAS_V1_PORT_8081_TCP_ADDR | "10.0.197.100"
|
QUANTBOT_API_V0_PORT_80_TCP_PORT | "80"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_80_TCP | "tcp://10.0.87.83:80"
|
PROFILE_V2_PORT | "tcp://10.0.173.85:80"
|
ERP_API_V1_PORT_80_TCP_ADDR | "10.0.165.252"
|
PERFORMANCE_REPORT_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
PROFILE_V2_SERVICE_PORT | "80"
|
CUSTOMER_API_V1_PORT_8081_TCP_ADDR | "10.0.49.67"
|
PROFILE_API_V1_SERVICE_PORT | "80"
|
ERP_API_V1_PORT_8081_TCP | "tcp://10.0.165.252:8081"
|
CONTENTS_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
LICENSE_API_V1_SERVICE_PORT | "80"
|
HOSTNAME | "resolve-v5-7d7fdd49bf-smskb"
|
PHP_INI_DIR | "/usr/local/etc/php"
|
APP_URL | "https://resolve.ftd.com.br"
|
AWS_KEY | "AKIAZQSLNCVE3XSFTXZQ"
|
DB_PORT | "3306"
|
PORTAL_CLIENTE_V1_SERVICE_PORT | "80"
|
GESTAO_USUARIOS_API_V1_PORT | "tcp://10.0.12.100:80"
|
QUANTBOT_API_V0_PORT_80_TCP_PROTO | "tcp"
|
LTI_LAUNCH_API_V1_PORT_80_TCP | "tcp://10.0.50.168:80"
|
ONEROSTER_API_V1_PORT_8081_TCP_PORT | "8081"
|
ADAPTIVE_LEARNING_API_V1_SERVICE_PORT | "80"
|
RESOLVE_ADM_V3_FPM_PORT_9000_TCP_PORT | "9000"
|
PORTAL_CLIENTE_V1_PORT | "tcp://10.0.52.156:80"
|
GESTAO_USUARIOS_API_V1_SERVICE_PORT | "80"
|
GESTAO_USUARIOS_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_ADM_V2_FPM_PORT_9000_TCP_PROTO | "tcp"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_8081_TCP_PORT | "8081"
|
ADAPTIVE_LEARNING_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
PORTAL_CLIENTE_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ACTIVITY_API_V1_SERVICE_HOST | "10.0.221.124"
|
ADAPTIVE_LEARNING_API_V1_PORT | "tcp://10.0.42.118:80"
|
ASSIGNMENT_API_V1_PORT_80_TCP_PORT | "80"
|
CANVAS_SYNC_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CHANNEL_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_ADM_V5_WEB_SERVICE_HOST | "10.0.190.47"
|
MICROSERVICE_MENU_API_V1_PORT_80_TCP_PORT | "80"
|
RESOLVE_ADM_V3_FPM_PORT_9000_TCP_PROTO | "tcp"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_8081_TCP_PROTO | "tcp"
|
SALA_VIRTUAL_BACK_V1_PORT | "tcp://10.0.86.57:80"
|
CONTENTS_API_V1_SERVICE_PORT | "80"
|
PERFORMANCE_REPORT_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
SALA_VIRTUAL_BACK_V1_SERVICE_PORT | "80"
|
CANVAS_SYNC_API_V1_SERVICE_PORT | "80"
|
CHANNEL_API_V1_PORT | "tcp://10.0.67.172:80"
|
SALA_VIRTUAL_BACK_V1_SERVICE_PORT_MANAGEMENT_PORT | "3001"
|
CANVAS_SYNC_API_V1_PORT | "tcp://10.0.88.58:80"
|
PERFORMANCE_REPORT_API_V1_SERVICE_PORT | "80"
|
CANVAS_LAYERS_API_V1_PORT_80_TCP_PORT | "80"
|
CHANNEL_API_V1_SERVICE_PORT | "80"
|
CONTENTS_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CONTENTS_API_V1_PORT | "tcp://10.0.171.216:80"
|
ONEROSTER_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ASSIGNMENT_API_V1_PORT_80_TCP_PROTO | "tcp"
|
PERFORMANCE_REPORT_API_V1_PORT | "tcp://10.0.216.119:80"
|
EVENT_API_V1_PORT_80_TCP_PORT | "80"
|
ACTIVITY_API_V1_PORT_8081_TCP_ADDR | "10.0.221.124"
|
RESOLVE_V5_WEB_SERVICE_PORT_HTTP | "8088"
|
RESOLVE_ADM_V1_FPM_SERVICE_HOST | "10.0.174.205"
|
RESOLVE_V1_FPM_PORT_9000_TCP_ADDR | "10.0.252.96"
|
CUSTOMER_API_V1_PORT_8081_TCP_PORT | "8081"
|
EVENT_API_V1_PORT_80_TCP_PROTO | "tcp"
|
INTEGRACAO_CANVAS_V1_PORT_8081_TCP_PORT | "8081"
|
CANVAS_LAYERS_API_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V5_FPM_PORT_9000_TCP_PORT | "9000"
|
ERP_API_V1_PORT_80_TCP_PORT | "80"
|
MICROSERVICE_MENU_API_V1_PORT_80_TCP_PROTO | "tcp"
|
HOME | "/var/www"
|
ONEROSTER_API_V1_SERVICE_PORT | "80"
|
INTEGRACAO_CANVAS_V1_PORT_8081_TCP_PROTO | "tcp"
|
ONBOARDING_V1_PORT_80_TCP_ADDR | "10.0.138.213"
|
RESOLVE_ADM_V5_FPM_PORT_9000_TCP_PROTO | "tcp"
|
ONEROSTER_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
IONICA_NOTIFICATION_V1_SERVICE_HOST | "10.0.135.195"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_SERVICE_PORT | "80"
|
ONEROUSTER_API_V1_SERVICE_HOST | "10.0.209.232"
|
RESOLVE_V2_FPM_PORT_9000_TCP_ADDR | "10.0.165.81"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT | "tcp://10.0.19.0:80"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ERP_API_V1_PORT_80_TCP_PROTO | "tcp"
|
CUSTOMER_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ONBOARDING_V1_PORT_8081_TCP | "tcp://10.0.138.213:8081"
|
ONEROSTER_API_V1_PORT | "tcp://10.0.148.24:80"
|
RESOLVE_ADM_V2_FPM_SERVICE_HOST | "10.0.118.144"
|
BROADCAST_DRIVER | "log"
|
RESOLVE_ADM_V3_FPM_SERVICE_HOST | "10.0.46.199"
|
ONEROUSTER_API_V1_PORT_8081_TCP_ADDR | "10.0.209.232"
|
ACTIVITY_API_V1_PORT_8081_TCP_PORT | "8081"
|
CALENDAR_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
IONICA_NOTIFICATION_V1_PORT_8081_TCP_ADDR | "10.0.135.195"
|
SECURITI_INTEGRATION_V1_SERVICE_HOST | "10.0.205.50"
|
RESOLVE_V3_FPM_PORT_9000_TCP_ADDR | "10.0.242.53"
|
RESOLVE_ADM_V1_WEB_PORT | "tcp://10.0.15.247:8088"
|
RESOLVE_ADM_V1_WEB_SERVICE_PORT | "8088"
|
RESOLVE_V1_WEB_SERVICE_HOST | "10.0.240.132"
|
PROFILE_API_V1_PORT_8081_TCP | "tcp://10.0.18.240:8081"
|
INTEGRACAO_CANVAS_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
PROFILE_API_V1_PORT_80_TCP_ADDR | "10.0.18.240"
|
LICENSE_API_V1_PORT_80_TCP_ADDR | "10.0.222.113"
|
RESOLVE_ADM_V1_WEB_PORT_8088_TCP_ADDR | "10.0.15.247"
|
SECURITI_INTEGRATION_V1_PORT_8081_TCP_ADDR | "10.0.205.50"
|
CUSTOMER_API_V1_SERVICE_PORT | "80"
|
RESOLVE_ADM_V2_WEB_SERVICE_PORT | "8088"
|
ECOMMERCE_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_ADM_V2_WEB_PORT | "tcp://10.0.94.156:8088"
|
PROFILE_V2_PORT_8081_TCP | "tcp://10.0.173.85:8081"
|
INTEGRACAO_CANVAS_V1_SERVICE_PORT | "80"
|
CUSTOMER_API_V1_PORT | "tcp://10.0.49.67:80"
|
RESOLVE_V1_FPM_PORT_9000_TCP_PORT | "9000"
|
INTEGRACAO_CANVAS_V1_PORT | "tcp://10.0.197.100:80"
|
CUSTOMER_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ACTIVITY_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
SCHOOL_V1_SERVICE_HOST | "10.0.245.80"
|
RESOLVE_V2_WEB_SERVICE_HOST | "10.0.77.231"
|
LICENSE_API_V1_PORT_8081_TCP | "tcp://10.0.222.113:8081"
|
PROFILE_V2_PORT_80_TCP_ADDR | "10.0.173.85"
|
POC_PIPELINE_ARQUITETURA_V1_SERVICE_HOST | "10.0.232.101"
|
PHP_LDFLAGS | "-Wl,-O1 -pie"
|
DB_DATABASE | "ftd_resolve"
|
CALENDAR_API_V1_PORT_80_TCP | "tcp://10.0.91.165:80"
|
RESOLVE_V5_FPM_PORT_9000_TCP_ADDR | "10.0.92.182"
|
ONBOARDING_V1_PORT_80_TCP_PORT | "80"
|
RESOLVE_ADM_V3_WEB_SERVICE_PORT | "8088"
|
RESOLVE_ADM_V3_WEB_PORT | "tcp://10.0.212.37:8088"
|
RESOLVE_ADM_V5_FPM_SERVICE_HOST | "10.0.185.113"
|
QUANTBOT_API_V0_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_V1_FPM_PORT_9000_TCP_PROTO | "tcp"
|
SCHOOL_V1_PORT_8081_TCP_ADDR | "10.0.245.80"
|
PORTAL_CLIENTE_V1_PORT_80_TCP_ADDR | "10.0.52.156"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_8081_TCP_ADDR | "10.0.232.101"
|
ADAPTIVE_LEARNING_API_V1_PORT_8081_TCP | "tcp://10.0.42.118:8081"
|
RESOLVE_V2_FPM_PORT_9000_TCP_PORT | "9000"
|
RESOLVE_V3_WEB_SERVICE_HOST | "10.0.55.88"
|
PORTAL_CLIENTE_V1_PORT_8081_TCP | "tcp://10.0.52.156:8081"
|
RESOLVE_ADM_V2_WEB_PORT_8088_TCP_ADDR | "10.0.94.156"
|
GESTAO_USUARIOS_API_V1_PORT_80_TCP_ADDR | "10.0.12.100"
|
ADAPTIVE_LEARNING_API_V1_PORT_80_TCP_ADDR | "10.0.42.118"
|
GESTAO_USUARIOS_API_V1_PORT_8081_TCP | "tcp://10.0.12.100:8081"
|
PHP_CFLAGS | "-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
MAIL_DRIVER | "smtp"
|
APP_NAME | "Resolve"
|
ONBOARDING_V1_PORT_80_TCP_PROTO | "tcp"
|
CONTENTS_API_V1_PORT_80_TCP_ADDR | "10.0.171.216"
|
PERFORMANCE_REPORT_API_V1_PORT_80_TCP_ADDR | "10.0.216.119"
|
ASSIGNMENT_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ONEROUSTER_API_V1_PORT_8081_TCP_PORT | "8081"
|
CHANNEL_API_V1_PORT_80_TCP_ADDR | "10.0.67.172"
|
SALA_VIRTUAL_BACK_V1_PORT_80_TCP_ADDR | "10.0.86.57"
|
RESOLVE_V2_FPM_PORT_9000_TCP_PROTO | "tcp"
|
CANVAS_SYNC_API_V1_PORT_80_TCP_ADDR | "10.0.88.58"
|
CONTENTS_API_V1_PORT_8081_TCP | "tcp://10.0.171.216:8081"
|
PERFORMANCE_REPORT_API_V1_PORT_8081_TCP | "tcp://10.0.216.119:8081"
|
RESOLVE_ADM_V3_WEB_PORT_8088_TCP_ADDR | "10.0.212.37"
|
CHANNEL_API_V1_PORT_8081_TCP | "tcp://10.0.67.172:8081"
|
ACTIVITY_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ACTIVITY_API_V1_SERVICE_PORT | "80"
|
CANVAS_SYNC_API_V1_PORT_8081_TCP | "tcp://10.0.88.58:8081"
|
RESOLVE_ADM_V1_FPM_PORT_9000_TCP | "tcp://10.0.174.205:9000"
|
RESOLVE_V3_FPM_PORT_9000_TCP_PORT | "9000"
|
ECOMMERCE_API_V1_PORT_80_TCP | "tcp://10.0.243.123:80"
|
IONICA_NOTIFICATION_V1_PORT_8081_TCP_PORT | "8081"
|
ACTIVITY_API_V1_PORT | "tcp://10.0.221.124:80"
|
PHP_VERSION | "7.3.32"
|
RESOLVE_ADM_V5_WEB_SERVICE_PORT | "8088"
|
EVENT_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ONEROUSTER_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V1_WEB_PORT_8088_TCP_PORT | "8088"
|
CANVAS_LAYERS_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
MICROSERVICE_MENU_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
IONICA_NOTIFICATION_V1_PORT_8081_TCP_PROTO | "tcp"
|
PROPOSAL_V1_SERVICE_HOST | "10.0.236.136"
|
RESOLVE_ADM_V5_WEB_PORT | "tcp://10.0.190.47:8088"
|
IDENTITY_API_V1_SERVICE_HOST | "10.0.43.34"
|
RESOLVE_ADM_V2_FPM_PORT_9000_TCP | "tcp://10.0.118.144:9000"
|
RESOLVE_V3_FPM_PORT_9000_TCP_PROTO | "tcp"
|
RESOLVE_V5_WEB_SERVICE_HOST | "10.0.63.222"
|
PROFILE_API_V1_PORT_80_TCP_PORT | "80"
|
LICENSE_API_V1_PORT_80_TCP_PORT | "80"
|
PROFILE_V2_PORT_80_TCP_PORT | "80"
|
SECURITI_INTEGRATION_V1_PORT_8081_TCP_PORT | "8081"
|
QUANTBOT_API_V0_PORT_80_TCP | "tcp://10.0.13.35:80"
|
SESSION_DRIVER | "redis"
|
GESTAO_USUARIOS_API_V1_PORT_80_TCP_PORT | "80"
|
MICROSERVICE_DROPSHIPPING_V1_SERVICE_HOST | "10.0.16.86"
|
RESOLVE_V1_FPM_SERVICE_HOST | "10.0.252.96"
|
PROFILE_API_V1_PORT_80_TCP_PROTO | "tcp"
|
SECURITI_INTEGRATION_V1_PORT_8081_TCP_PROTO | "tcp"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_8081_TCP | "tcp://10.0.19.0:8081"
|
SCHOOL_V1_PORT_8081_TCP_PORT | "8081"
|
ONEROSTER_API_V1_PORT_80_TCP_ADDR | "10.0.148.24"
|
RESOLVE_V5_FPM_PORT_9000_TCP_PORT | "9000"
|
RESOLVE_ADM_V2_WEB_PORT_8088_TCP_PORT | "8088"
|
RESOLVE_ADM_V1_WEB_PORT_8088_TCP_PROTO | "tcp"
|
LICENSE_API_V1_PORT_80_TCP_PROTO | "tcp"
|
IDENTITY_API_V1_PORT_8081_TCP_ADDR | "10.0.43.34"
|
ERP_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_ADM_V1_FPM_SERVICE_PORT | "9000"
|
ONEROSTER_API_V1_PORT_8081_TCP | "tcp://10.0.148.24:8081"
|
RESOLVE_ADM_V1_FPM_PORT | "tcp://10.0.174.205:9000"
|
ASSIGNMENT_API_V1_PORT_80_TCP | "tcp://10.0.223.12:80"
|
PROPOSAL_V1_PORT_8081_TCP_ADDR | "10.0.236.136"
|
PORTAL_CLIENTE_V1_PORT_80_TCP_PORT | "80"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_8081_TCP_PORT | "8081"
|
RESOLVE_ADM_V5_WEB_PORT_8088_TCP_ADDR | "10.0.190.47"
|
ADAPTIVE_LEARNING_API_V1_PORT_80_TCP_PORT | "80"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_80_TCP_ADDR | "10.0.19.0"
|
PROFILE_V2_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V3_FPM_PORT_9000_TCP | "tcp://10.0.46.199:9000"
|
GPG_KEYS | "CBAF69F173A0FEA4B537F470D66C9593118BCCB6 F38252826ACD957EF380D39F2F7956BC5DA04B5D"
|
LOG_CHANNEL | "stderr"
|
DB_USERNAME | "ftd_resolve@az-mysql57"
|
IONICA_NOTIFICATION_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ONEROUSTER_API_V1_PORT | "tcp://10.0.209.232:80"
|
PORTAL_CLIENTE_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V2_FPM_SERVICE_HOST | "10.0.165.81"
|
QUANTBOT_API_V0_PORT_3001_TCP_ADDR | "10.0.13.35"
|
EVENT_API_V1_PORT_80_TCP | "tcp://10.0.115.82:80"
|
IONICA_NOTIFICATION_V1_SERVICE_PORT | "80"
|
IONICA_NOTIFICATION_V1_PORT | "tcp://10.0.135.195:80"
|
RESOLVE_ADM_V2_FPM_PORT | "tcp://10.0.118.144:9000"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_8081_TCP_PROTO | "tcp"
|
SCHOOL_V1_PORT_8081_TCP_PROTO | "tcp"
|
CONTENTS_API_V1_PORT_80_TCP_PORT | "80"
|
RESOLVE_ADM_V3_WEB_PORT_8088_TCP_PORT | "8088"
|
RESOLVE_V5_FPM_PORT_9000_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V2_WEB_PORT_8088_TCP_PROTO | "tcp"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_8081_TCP_ADDR | "10.0.16.86"
|
PERFORMANCE_REPORT_API_V1_PORT_80_TCP_PORT | "80"
|
CANVAS_SYNC_API_V1_PORT_80_TCP_PORT | "80"
|
MICROSERVICE_MENU_API_V1_PORT_80_TCP | "tcp://10.0.3.211:80"
|
ONEROUSTER_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CHANNEL_API_V1_PORT_80_TCP_PORT | "80"
|
RESOLVE_ADM_V2_FPM_SERVICE_PORT | "9000"
|
ONEROUSTER_API_V1_SERVICE_PORT | "80"
|
SALA_VIRTUAL_BACK_V1_PORT_80_TCP_PORT | "80"
|
CANVAS_LAYERS_API_V1_PORT_80_TCP | "tcp://10.0.203.211:80"
|
ADAPTIVE_LEARNING_API_V1_PORT_80_TCP_PROTO | "tcp"
|
GESTAO_USUARIOS_API_V1_PORT_80_TCP_PROTO | "tcp"
|
PHP_CPPFLAGS | "-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
PHP_ASC_URL | "https://www.php.net/distributions/php-7.3.32.tar.xz.asc"
|
CUSTOMER_API_V1_PORT_80_TCP_ADDR | "10.0.49.67"
|
CANVAS_SYNC_API_V1_PORT_80_TCP_PROTO | "tcp"
|
SECURITI_INTEGRATION_V1_SERVICE_PORT | "80"
|
CONTENTS_API_V1_PORT_80_TCP_PROTO | "tcp"
|
ERP_API_V1_PORT_80_TCP | "tcp://10.0.165.252:80"
|
CUSTOMER_API_V1_PORT_8081_TCP | "tcp://10.0.49.67:8081"
|
RESOLVE_ADM_V3_FPM_PORT | "tcp://10.0.46.199:9000"
|
INTEGRACAO_CANVAS_V1_PORT_8081_TCP | "tcp://10.0.197.100:8081"
|
RESOLVE_V3_FPM_SERVICE_HOST | "10.0.242.53"
|
PERFORMANCE_REPORT_API_V1_PORT_80_TCP_PROTO | "tcp"
|
SALA_VIRTUAL_BACK_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V1_WEB_PORT | "tcp://10.0.240.132:8088"
|
SECURITI_INTEGRATION_V1_PORT | "tcp://10.0.205.50:80"
|
INTEGRACAO_CANVAS_V1_PORT_80_TCP_ADDR | "10.0.197.100"
|
RESOLVE_ADM_V3_WEB_PORT_8088_TCP_PROTO | "tcp"
|
CHANNEL_API_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V3_FPM_SERVICE_PORT | "9000"
|
SECURITI_INTEGRATION_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_ADM_V5_FPM_PORT_9000_TCP | "tcp://10.0.185.113:9000"
|
RESOLVE_V1_WEB_SERVICE_PORT | "8088"
|
ONEROSTER_API_V1_PORT_80_TCP_PORT | "80"
|
SCHOOL_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
POC_PIPELINE_ARQUITETURA_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
SCHOOL_V1_PORT | "tcp://10.0.245.80:80"
|
RESOLVE_ADM_V5_WEB_PORT_8088_TCP_PORT | "8088"
|
RESOLVE_V1_WEB_PORT_8088_TCP_ADDR | "10.0.240.132"
|
POC_PIPELINE_ARQUITETURA_V1_SERVICE_PORT | "80"
|
RESOLVE_V2_WEB_PORT | "tcp://10.0.77.231:8088"
|
IDENTITY_API_V1_PORT_8081_TCP_PORT | "8081"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_80_TCP_PORT | "80"
|
SCHOOL_V1_SERVICE_PORT | "80"
|
PROPOSAL_V1_PORT_8081_TCP_PORT | "8081"
|
RESOLVE_V2_WEB_SERVICE_PORT | "8088"
|
POC_PIPELINE_ARQUITETURA_V1_PORT | "tcp://10.0.232.101:80"
|
PHP_URL | "https://www.php.net/distributions/php-7.3.32.tar.xz"
|
CACHE_DRIVER | "redis"
|
QUEUE_DRIVER | "sync"
|
RESOLVE_V5_FPM_SERVICE_HOST | "10.0.92.182"
|
RESOLVE_ADM_V5_FPM_PORT | "tcp://10.0.185.113:9000"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_80_TCP_PROTO | "tcp"
|
ACTIVITY_API_V1_PORT_8081_TCP | "tcp://10.0.221.124:8081"
|
ONEROSTER_API_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V3_WEB_SERVICE_PORT | "8088"
|
RESOLVE_V3_WEB_PORT | "tcp://10.0.55.88:8088"
|
IDENTITY_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_V2_WEB_PORT_8088_TCP_ADDR | "10.0.77.231"
|
RESOLVE_ADM_V5_FPM_SERVICE_PORT | "9000"
|
QUANTBOT_API_V0_PORT_3001_TCP_PORT | "3001"
|
ONBOARDING_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ACTIVITY_API_V1_PORT_80_TCP_ADDR | "10.0.221.124"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_8081_TCP_PORT | "8081"
|
ONBOARDING_TOPIC_CONSUMER_V1_SERVICE_HOST | "10.0.87.83"
|
PROPOSAL_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V5_WEB_PORT_8088_TCP_PROTO | "tcp"
|
MAIL_ENCRYPTION | "TLS"
|
INTEGRACAO_CANVAS_V1_PORT_80_TCP_PORT | "80"
|
QUANTBOT_API_V0_PORT_3001_TCP_PROTO | "tcp"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_8081_TCP_ADDR | "10.0.87.83"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_V1_FPM_PORT_9000_TCP | "tcp://10.0.252.96:9000"
|
RESOLVE_V3_WEB_PORT_8088_TCP_ADDR | "10.0.55.88"
|
CUSTOMER_API_V1_PORT_80_TCP_PORT | "80"
|
LTI_LAUNCH_API_V1_SERVICE_HOST | "10.0.50.168"
|
PROPOSAL_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_V5_WEB_SERVICE_PORT | "8088"
|
RESOLVE_V2_FPM_PORT_9000_TCP | "tcp://10.0.165.81:9000"
|
PROPOSAL_V1_SERVICE_PORT | "80"
|
IDENTITY_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
KUBERNETES_PORT_443_TCP_ADDR | "10.0.0.1"
|
ONBOARDING_V1_PORT_80_TCP | "tcp://10.0.138.213:80"
|
IDENTITY_API_V1_PORT | "tcp://10.0.43.34:80"
|
PROFILE_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
INTEGRACAO_CANVAS_V1_PORT_80_TCP_PROTO | "tcp"
|
LICENSE_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
IDENTITY_API_V1_SERVICE_PORT | "80"
|
RESOLVE_V5_WEB_PORT | "tcp://10.0.63.222:8088"
|
RESOLVE_V1_WEB_PORT_8088_TCP_PORT | "8088"
|
PROPOSAL_V1_PORT | "tcp://10.0.236.136:80"
|
LTI_LAUNCH_API_V1_PORT_8081_TCP_ADDR | "10.0.50.168"
|
CUSTOMER_API_V1_PORT_80_TCP_PROTO | "tcp"
|
PROFILE_V2_SERVICE_PORT_HTTP_PORT | "80"
|
IONICA_NOTIFICATION_V1_PORT_8081_TCP | "tcp://10.0.135.195:8081"
|
RESOLVE_V2_WEB_PORT_8088_TCP_PORT | "8088"
|
ADAPTIVE_LEARNING_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_V3_FPM_PORT_9000_TCP | "tcp://10.0.242.53:9000"
|
ONEROUSTER_API_V1_PORT_8081_TCP | "tcp://10.0.209.232:8081"
|
RESOLVE_V5_WEB_PORT_8088_TCP_ADDR | "10.0.63.222"
|
RESOLVE_V1_FPM_SERVICE_PORT | "9000"
|
MICROSERVICE_DROPSHIPPING_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
GESTAO_USUARIOS_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ONEROUSTER_API_V1_PORT_80_TCP_ADDR | "10.0.209.232"
|
RESOLVE_V1_WEB_PORT_8088_TCP_PROTO | "tcp"
|
IONICA_NOTIFICATION_V1_PORT_80_TCP_ADDR | "10.0.135.195"
|
RESOLVE_V1_FPM_PORT | "tcp://10.0.252.96:9000"
|
MICROSERVICE_DROPSHIPPING_V1_SERVICE_PORT | "80"
|
MICROSERVICE_DROPSHIPPING_V1_PORT | "tcp://10.0.16.86:80"
|
PORTAL_CLIENTE_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ACTIVITY_API_V1_PORT_80_TCP_PORT | "80"
|
PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
CHANNEL_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_ADM_V1_WEB_PORT_8088_TCP | "tcp://10.0.15.247:8088"
|
PROFILE_API_V1_PORT_80_TCP | "tcp://10.0.18.240:80"
|
RESOLVE_V2_FPM_SERVICE_PORT | "9000"
|
ACTIVITY_API_V1_PORT_80_TCP_PROTO | "tcp"
|
CANVAS_SYNC_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_V2_FPM_PORT | "tcp://10.0.165.81:9000"
|
PERFORMANCE_REPORT_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_V2_WEB_PORT_8088_TCP_PROTO | "tcp"
|
LICENSE_API_V1_PORT_80_TCP | "tcp://10.0.222.113:80"
|
SECURITI_INTEGRATION_V1_PORT_8081_TCP | "tcp://10.0.205.50:8081"
|
SECURITI_INTEGRATION_V1_PORT_80_TCP_ADDR | "10.0.205.50"
|
RESOLVE_V3_WEB_PORT_8088_TCP_PORT | "8088"
|
CONTENTS_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
PROFILE_V2_PORT_80_TCP | "tcp://10.0.173.85:80"
|
SALA_VIRTUAL_BACK_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_8081_TCP_PORT | "8081"
|
AWS_BUCKET | "ftd-resolve"
|
MAIL_PASSWORD | "md-xAdaczIEJGO4xjSijLADWA"
|
SCHOOL_V1_PORT_80_TCP_ADDR | "10.0.245.80"
|
RESOLVE_V5_FPM_PORT_9000_TCP | "tcp://10.0.92.182:9000"
|
RESOLVE_ADM_V2_WEB_PORT_8088_TCP | "tcp://10.0.94.156:8088"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_8081_TCP | "tcp://10.0.232.101:8081"
|
PORTAL_CLIENTE_V1_PORT_80_TCP | "tcp://10.0.52.156:80"
|
ADAPTIVE_LEARNING_API_V1_PORT_80_TCP | "tcp://10.0.42.118:80"
|
SCHOOL_V1_PORT_8081_TCP | "tcp://10.0.245.80:8081"
|
GESTAO_USUARIOS_API_V1_PORT_80_TCP | "tcp://10.0.12.100:80"
|
KUBERNETES_PORT_443_TCP_PORT | "443"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_80_TCP_ADDR | "10.0.232.101"
|
RESOLVE_V3_WEB_PORT_8088_TCP_PROTO | "tcp"
|
LTI_LAUNCH_API_V1_PORT_8081_TCP_PORT | "8081"
|
RESOLVE_V3_FPM_SERVICE_PORT | "9000"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_V3_FPM_PORT | "tcp://10.0.242.53:9000"
|
LOG_STDERR_FORMATTER | "Monolog\Formatter\JsonFormatter"
|
KUBERNETES_PORT_443_TCP_PROTO | "tcp"
|
LTI_LAUNCH_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
IONICA_NOTIFICATION_V1_PORT_80_TCP_PORT | "80"
|
CANVAS_SYNC_API_V1_PORT_80_TCP | "tcp://10.0.88.58:80"
|
ONEROUSTER_API_V1_PORT_80_TCP_PORT | "80"
|
CONTENTS_API_V1_PORT_80_TCP | "tcp://10.0.171.216:80"
|
ONEROSTER_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
SALA_VIRTUAL_BACK_V1_PORT_80_TCP | "tcp://10.0.86.57:80"
|
RESOLVE_ADM_V3_WEB_PORT_8088_TCP | "tcp://10.0.212.37:8088"
|
PERFORMANCE_REPORT_API_V1_PORT_80_TCP | "tcp://10.0.216.119:80"
|
CHANNEL_API_V1_PORT_80_TCP | "tcp://10.0.67.172:80"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_V5_WEB_PORT_8088_TCP_PORT | "8088"
|
CALENDAR_API_V1_SERVICE_HOST | "10.0.91.165"
|
ONBOARDING_TOPIC_CONSUMER_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_V5_WEB_PORT_8088_TCP_PROTO | "tcp"
|
ONBOARDING_TOPIC_CONSUMER_V1_SERVICE_PORT | "80"
|
RESOLVE_V5_FPM_SERVICE_PORT | "9000"
|
IONICA_NOTIFICATION_V1_PORT_80_TCP_PROTO | "tcp"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT | "tcp://10.0.87.83:80"
|
ONEROUSTER_API_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V5_FPM_PORT | "tcp://10.0.92.182:9000"
|
SECURITI_INTEGRATION_V1_PORT_80_TCP_PORT | "80"
|
MAIL_HOST | "smtp.mandrillapp.com"
|
CODE_COOKIES | "01902df1-392c-7dcd-8a6d-080e6347afee"
|
LTI_LAUNCH_API_V1_PORT | "tcp://10.0.50.168:80"
|
SALA_VIRTUAL_BACK_V1_PORT_3001_TCP_ADDR | "10.0.86.57"
|
PROPOSAL_V1_PORT_8081_TCP | "tcp://10.0.236.136:8081"
|
CUSTOMER_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ECOMMERCE_API_V1_SERVICE_HOST | "10.0.243.123"
|
SECURITI_INTEGRATION_V1_PORT_80_TCP_PROTO | "tcp"
|
SCHOOL_V1_PORT_80_TCP_PORT | "80"
|
PROPOSAL_V1_PORT_80_TCP_ADDR | "10.0.236.136"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_80_TCP | "tcp://10.0.19.0:80"
|
LTI_LAUNCH_API_V1_SERVICE_PORT | "80"
|
IDENTITY_API_V1_PORT_8081_TCP | "tcp://10.0.43.34:8081"
|
RESOLVE_ADM_V5_WEB_PORT_8088_TCP | "tcp://10.0.190.47:8088"
|
IDENTITY_API_V1_PORT_80_TCP_ADDR | "10.0.43.34"
|
LTI_LAUNCH_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CALENDAR_API_V1_PORT_8081_TCP_ADDR | "10.0.91.165"
|
INTEGRACAO_CANVAS_V1_SERVICE_PORT_HTTP_PORT | "80"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_80_TCP_PORT | "80"
|
ONEROSTER_API_V1_PORT_80_TCP | "tcp://10.0.148.24:80"
|
APP_LOG | "errorlog"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_80_TCP_PROTO | "tcp"
|
QUANTBOT_API_V0_SERVICE_HOST | "10.0.13.35"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_80_TCP_ADDR | "10.0.16.86"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_8081_TCP | "tcp://10.0.16.86:8081"
|
QUANTBOT_API_V0_PORT_3001_TCP | "tcp://10.0.13.35:3001"
|
SCHOOL_V1_PORT_80_TCP_PROTO | "tcp"
|
ECOMMERCE_API_V1_PORT_8081_TCP_ADDR | "10.0.243.123"
|
ASSIGNMENT_API_V1_SERVICE_HOST | "10.0.223.12"
|
ACTIVITY_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
CUSTOMER_API_V1_PORT_80_TCP | "tcp://10.0.49.67:80"
|
INTEGRACAO_CANVAS_V1_PORT_80_TCP | "tcp://10.0.197.100:80"
|
AWS_REGION | "sa-east-1"
|
MICROSERVICE_MENU_API_V1_SERVICE_HOST | "10.0.3.211"
|
CANVAS_LAYERS_API_V1_SERVICE_HOST | "10.0.203.211"
|
SALA_VIRTUAL_BACK_V1_PORT_3001_TCP_PORT | "3001"
|
RESOLVE_V1_WEB_PORT_8088_TCP | "tcp://10.0.240.132:8088"
|
PROPOSAL_V1_PORT_80_TCP_PORT | "80"
|
EVENT_API_V1_SERVICE_HOST | "10.0.115.82"
|
CALENDAR_API_V1_PORT_8081_TCP_PORT | "8081"
|
ASSIGNMENT_API_V1_PORT_8081_TCP_ADDR | "10.0.223.12"
|
IDENTITY_API_V1_PORT_80_TCP_PORT | "80"
|
APP_LOG_LEVEL | "debug"
|
MICROSERVICE_MENU_API_V1_PORT_8081_TCP_ADDR | "10.0.3.211"
|
ECOMMERCE_API_V1_PORT_8081_TCP_PORT | "8081"
|
ACTIVITY_API_V1_PORT_80_TCP | "tcp://10.0.221.124:80"
|
RESOLVE_V2_WEB_PORT_8088_TCP | "tcp://10.0.77.231:8088"
|
SALA_VIRTUAL_BACK_V1_PORT_3001_TCP_PROTO | "tcp"
|
CANVAS_LAYERS_API_V1_PORT_8081_TCP_ADDR | "10.0.203.211"
|
PROPOSAL_V1_PORT_80_TCP_PROTO | "tcp"
|
IDENTITY_API_V1_PORT_80_TCP_PROTO | "tcp"
|
CALENDAR_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ERP_API_V1_SERVICE_HOST | "10.0.165.252"
|
EVENT_API_V1_PORT_8081_TCP_ADDR | "10.0.115.82"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_80_TCP_PORT | "80"
|
AWS_SECRET | "AcRJCORNkwUgzIOWfDY7UuTOalGlu8Ko1RFiCtP8"
|
REDIS_PASSWORD | "1JcJZLekijsDPYZKLBvrZvKSroqNTxIDSI0Is3UpjyU="
|
ONEROUSTER_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V3_WEB_PORT_8088_TCP | "tcp://10.0.55.88:8088"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_8081_TCP | "tcp://10.0.87.83:8081"
|
ERP_API_V1_PORT_8081_TCP_ADDR | "10.0.165.252"
|
IONICA_NOTIFICATION_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ECOMMERCE_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_80_TCP_ADDR | "10.0.87.83"
|
LTI_LAUNCH_API_V1_PORT_8081_TCP | "tcp://10.0.50.168:8081"
|
KUBERNETES_PORT_443_TCP | "tcp://10.0.0.1:443"
|
CALENDAR_API_V1_PORT | "tcp://10.0.91.165:80"
|
CALENDAR_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
KUBERNETES_SERVICE_PORT_HTTPS | "443"
|
ASSIGNMENT_API_V1_PORT_8081_TCP_PORT | "8081"
|
CALENDAR_API_V1_SERVICE_PORT | "80"
|
SECURITI_INTEGRATION_V1_SERVICE_PORT_HTTP_PORT | "80"
|
LTI_LAUNCH_API_V1_PORT_80_TCP_ADDR | "10.0.50.168"
|
SERVER_TYPE | "public"
|
MAIL_PORT | "587"
|
ECOMMERCE_API_V1_PORT | "tcp://10.0.243.123:80"
|
SCHOOL_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ECOMMERCE_API_V1_SERVICE_PORT | "80"
|
MICROSERVICE_MENU_API_V1_PORT_8081_TCP_PORT | "8081"
|
POC_PIPELINE_ARQUITETURA_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ONEROUSTER_API_V1_PORT_80_TCP | "tcp://10.0.209.232:80"
|
CANVAS_LAYERS_API_V1_PORT_8081_TCP_PORT | "8081"
|
ASSIGNMENT_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
IONICA_NOTIFICATION_V1_PORT_80_TCP | "tcp://10.0.135.195:80"
|
RESOLVE_V5_WEB_PORT_8088_TCP | "tcp://10.0.63.222:8088"
|
EVENT_API_V1_PORT_8081_TCP_PORT | "8081"
|
ECOMMERCE_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
PHPIZE_DEPS | "autoconf \t\tdpkg-dev \t\tfile \t\tg++ \t\tgcc \t\tlibc-dev \t\tmake \t\tpkg-config \t\tre2c"
|
APP_ENV | "production "
|
REDIS_HOST | "redis-server-prod.redis.cache.windows.net"
|
DB_PASSWORD | "wzYaVZnHM22kASm5"
|
APP_KEY | "base64:EGo0YTthasSJWDMRuaCOcSqx/T9eyztgWvnlUP6QP1U="
|
RESOLVE_ADM_V1_WEB_SERVICE_PORT_HTTP | "8088"
|
ONBOARDING_V1_SERVICE_HOST | "10.0.138.213"
|
QUANTBOT_API_V0_PORT | "tcp://10.0.13.35:80"
|
MICROSERVICE_MENU_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
QUANTBOT_API_V0_SERVICE_PORT | "80"
|
CANVAS_LAYERS_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ERP_API_V1_PORT_8081_TCP_PORT | "8081"
|
EVENT_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
QUANTBOT_API_V0_SERVICE_PORT_MANAGEMENT_PORT | "3001"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_80_TCP_PORT | "80"
|
SECURITI_INTEGRATION_V1_PORT_80_TCP | "tcp://10.0.205.50:80"
|
KUBERNETES_SERVICE_HOST | "10.0.0.1"
|
PWD | "/app"
|
PHP_SHA256 | "94effa250b80f031e77fbd98b6950c441157a2a8f9e076ee68e02f5b0b7a3fd9"
|
DOMAIN_ADMIN | "admin-resolve.ftd.com.br"
|
SCHOOL_V1_PORT_80_TCP | "tcp://10.0.245.80:80"
|
ASSIGNMENT_API_V1_SERVICE_PORT | "80"
|
ASSIGNMENT_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ERP_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ONBOARDING_V1_PORT_8081_TCP_ADDR | "10.0.138.213"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_80_TCP | "tcp://10.0.232.101:80"
|
ASSIGNMENT_API_V1_PORT | "tcp://10.0.223.12:80"
|
RESOLVE_ADM_V2_WEB_SERVICE_PORT_HTTP | "8088"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_80_TCP_PROTO | "tcp"
|
LTI_LAUNCH_API_V1_PORT_80_TCP_PORT | "80"
|
REDIS_SCHEME | "tls"
|
CANVAS_LAYERS_API_V1_PORT | "tcp://10.0.203.211:80"
|
MICROSERVICE_MENU_API_V1_PORT | "tcp://10.0.3.211:80"
|
LTI_LAUNCH_API_V1_PORT_80_TCP_PROTO | "tcp"
|
CANVAS_LAYERS_API_V1_SERVICE_PORT | "80"
|
MICROSERVICE_MENU_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_ADM_V3_WEB_SERVICE_PORT_HTTP | "8088"
|
PROPOSAL_V1_SERVICE_PORT_HTTP_PORT | "80"
|
EVENT_API_V1_PORT | "tcp://10.0.115.82:80"
|
EVENT_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
PROFILE_V2_SERVICE_HOST | "10.0.173.85"
|
PROFILE_API_V1_SERVICE_HOST | "10.0.18.240"
|
LICENSE_API_V1_SERVICE_HOST | "10.0.222.113"
|
IDENTITY_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
CANVAS_LAYERS_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
MICROSERVICE_MENU_API_V1_SERVICE_PORT | "80"
|
EVENT_API_V1_SERVICE_PORT | "80"
|
DB_HOST | "az-mysql57.mysql.database.azure.com"
|
LICENSE_API_V1_PORT_8081_TCP_ADDR | "10.0.222.113"
|
PORTAL_CLIENTE_V1_SERVICE_HOST | "10.0.52.156"
|
ERP_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ERP_API_V1_PORT | "tcp://10.0.165.252:80"
|
PROFILE_V2_PORT_8081_TCP_ADDR | "10.0.173.85"
|
ERP_API_V1_SERVICE_PORT | "80"
|
GESTAO_USUARIOS_API_V1_SERVICE_HOST | "10.0.12.100"
|
ADAPTIVE_LEARNING_API_V1_SERVICE_HOST | "10.0.42.118"
|
MICROSERVICE_DROPSHIPPING_V1_SERVICE_PORT_HTTP_PORT | "80"
|
PROFILE_API_V1_PORT_8081_TCP_ADDR | "10.0.18.240"
|
PERFORMANCE_REPORT_API_V1_SERVICE_HOST | "10.0.216.119"
|
PROPOSAL_V1_PORT_80_TCP | "tcp://10.0.236.136:80"
|
CONTENTS_API_V1_SERVICE_HOST | "10.0.171.216"
|
PORTAL_CLIENTE_V1_PORT_8081_TCP_ADDR | "10.0.52.156"
|
GESTAO_USUARIOS_API_V1_PORT_8081_TCP_ADDR | "10.0.12.100"
|
CALENDAR_API_V1_PORT_8081_TCP | "tcp://10.0.91.165:8081"
|
CANVAS_SYNC_API_V1_SERVICE_HOST | "10.0.88.58"
|
ADAPTIVE_LEARNING_API_V1_PORT_8081_TCP_ADDR | "10.0.42.118"
|
CALENDAR_API_V1_PORT_80_TCP_ADDR | "10.0.91.165"
|
SALA_VIRTUAL_BACK_V1_SERVICE_HOST | "10.0.86.57"
|
ONBOARDING_V1_PORT_8081_TCP_PORT | "8081"
|
CHANNEL_API_V1_SERVICE_HOST | "10.0.67.172"
|
RESOLVE_ADM_V5_WEB_SERVICE_PORT_HTTP | "8088"
|
IDENTITY_API_V1_PORT_80_TCP | "tcp://10.0.43.34:80"
|
SALA_VIRTUAL_BACK_V1_PORT_3001_TCP | "tcp://10.0.86.57:3001"
|
ONBOARDING_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V1_FPM_PORT_9000_TCP_ADDR | "10.0.174.205"
|
CONTENTS_API_V1_PORT_8081_TCP_ADDR | "10.0.171.216"
|
CANVAS_SYNC_API_V1_PORT_8081_TCP_ADDR | "10.0.88.58"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_80_TCP | "tcp://10.0.16.86:80"
|
ECOMMERCE_API_V1_PORT_80_TCP_ADDR | "10.0.243.123"
|
CHANNEL_API_V1_PORT_8081_TCP_ADDR | "10.0.67.172"
|
PERFORMANCE_REPORT_API_V1_PORT_8081_TCP_ADDR | "10.0.216.119"
|
ECOMMERCE_API_V1_PORT_8081_TCP | "tcp://10.0.243.123:8081"
|
USER | "www-data"
|
HTTP_COOKIE | "XSRF-TOKEN=eyJpdiI6Iks5MURwS0x3c2txUVVzNVRPNFZCbUE9PSIsInZhbHVlIjoidlROQUVnVHdSMGliVG5qUitXTWhXXC9NdE15SHdUbmRxazh1SjJHd3U3dHlTa1NMbDA3bkVvY25oNWdiNitFTjUiLCJtYWMiOiI3MmY2YjZiZjVkZmZmNGViYjBkZmVjNzQ4YmVlMTM4NzQzZjZkMjJiZTFhZDM2YTdmN2ViYWY4OTlkYTI4MmI1In0%3D; resolve_session=eyJpdiI6IlpyQkFTd3ZDcXpOWUVuMmVQeXpqd2c9PSIsInZhbHVlIjoiYmNCMlRqVno4RWYyK0JVejdNTGJcL3ArSE9NbEI1YW5MVXlUZnByUG4xR1h5Vng3TjY1TGhFVWdlU0NRcEZ5NFpUZm55bFdnTHI2QTErNDM5TmxnRU1PNnFxYUEwOE5lRDBBbjlHdk5nZFRsVDd3WXhGbWFlTFlLTU9NUWM5amFGIiwibWFjIjoiZTUwN2QyY2VlMTM4NWFkMzg4MjRlMWQ0NjEzODUzOWM2YmE0OTM3ZThiNTgyMTVkOGQ4NjIyNmE5ZDNiNmIyNiJ9"
|
HTTP_CF_CONNECTING_IP | "216.73.216.161"
|
HTTP_CF_VISITOR | "{"scheme":"https"}"
|
HTTP_CF_IPCOUNTRY | "US"
|
HTTP_ACCEPT | "*/*"
|
HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])"
|
HTTP_ACCEPT_ENCODING | "gzip, br"
|
HTTP_CDN_LOOP | "cloudflare; loops=1"
|
HTTP_CF_RAY | "977a7f532fde227c-GRU"
|
HTTP_X_ORIGINAL_FORWARDED_FOR | "216.73.216.161"
|
HTTP_X_SCHEME | "https"
|
HTTP_X_FORWARDED_PROTO | "https"
|
HTTP_X_FORWARDED_PORT | "443"
|
HTTP_X_FORWARDED_HOST | "resolve.ftd.com.br"
|
HTTP_X_FORWARDED_FOR | "10.240.0.16"
|
HTTP_X_REAL_IP | "10.240.0.16"
|
HTTP_X_REQUEST_ID | "a4a01b4439c76b035f0f473ca7bf16b8"
|
HTTP_HOST | "resolve.ftd.com.br"
|
PATH_INFO | "" |
SCRIPT_FILENAME | "/app/public/index.php"
|
REDIRECT_STATUS | "200"
|
SERVER_NAME | "resolve-hml.ftd.com.br"
|
SERVER_PORT | "80"
|
SERVER_ADDR | "10.244.10.253"
|
REMOTE_PORT | "37892"
|
REMOTE_ADDR | "10.244.0.133"
|
SERVER_SOFTWARE | "nginx/1.19.10"
|
GATEWAY_INTERFACE | "CGI/1.1"
|
REQUEST_SCHEME | "http"
|
SERVER_PROTOCOL | "HTTP/1.1"
|
DOCUMENT_ROOT | "/app/public"
|
DOCUMENT_URI | "/index.php"
|
REQUEST_URI | "/2018/dia/1"
|
SCRIPT_NAME | "/index.php"
|
CONTENT_LENGTH | "" |
CONTENT_TYPE | "" |
REQUEST_METHOD | "GET"
|
QUERY_STRING | "" |
FCGI_ROLE | "RESPONDER"
|
PHP_SELF | "/index.php"
|
REQUEST_TIME_FLOAT | 1756622016.5853
|
REQUEST_TIME | 1756622016
|
argv | [] |
argc | 0
|
Key | Value |
RESOLVE_ADM_V2_FPM_PORT_9000_TCP_ADDR | "10.0.118.144"
|
LICENSE_API_V1_PORT_8081_TCP_PORT | "8081"
|
PROFILE_V2_PORT_8081_TCP_PORT | "8081"
|
PROFILE_API_V1_PORT_8081_TCP_PORT | "8081"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_SERVICE_HOST | "10.0.19.0"
|
ONEROSTER_API_V1_SERVICE_HOST | "10.0.148.24"
|
QUANTBOT_API_V0_PORT_80_TCP_ADDR | "10.0.13.35"
|
REDIS_PORT | "6380"
|
EM_BREVE | "false"
|
KUBERNETES_SERVICE_PORT | "443"
|
RESOLVE_V1_WEB_SERVICE_PORT_HTTP | "8088"
|
ONEROSTER_API_V1_PORT_8081_TCP_ADDR | "10.0.148.24"
|
ASSIGNMENT_API_V1_PORT_8081_TCP | "tcp://10.0.223.12:8081"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_8081_TCP_ADDR | "10.0.19.0"
|
PORTAL_CLIENTE_V1_PORT_8081_TCP_PORT | "8081"
|
ADAPTIVE_LEARNING_API_V1_PORT_8081_TCP_PORT | "8081"
|
ONBOARDING_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CALENDAR_API_V1_PORT_80_TCP_PORT | "80"
|
ONBOARDING_TOPIC_CONSUMER_V1_SERVICE_PORT_HTTP_PORT | "80"
|
LICENSE_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ONBOARDING_V1_SERVICE_PORT | "80"
|
KUBERNETES_PORT | "tcp://10.0.0.1:443"
|
RESOLVE_ADM_V3_FPM_PORT_9000_TCP_ADDR | "10.0.46.199"
|
RESOLVE_ADM_V1_WEB_SERVICE_HOST | "10.0.15.247"
|
ASSIGNMENT_API_V1_PORT_80_TCP_ADDR | "10.0.223.12"
|
ONBOARDING_V1_PORT | "tcp://10.0.138.213:80"
|
PROFILE_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
GESTAO_USUARIOS_API_V1_PORT_8081_TCP_PORT | "8081"
|
PROFILE_V2_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V1_FPM_PORT_9000_TCP_PORT | "9000"
|
CALENDAR_API_V1_PORT_80_TCP_PROTO | "tcp"
|
ADAPTIVE_LEARNING_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
CUSTOMER_API_V1_SERVICE_HOST | "10.0.49.67"
|
CANVAS_LAYERS_API_V1_PORT_80_TCP_ADDR | "10.0.203.211"
|
CANVAS_LAYERS_API_V1_PORT_8081_TCP | "tcp://10.0.203.211:8081"
|
PERFORMANCE_REPORT_API_V1_PORT_8081_TCP_PORT | "8081"
|
MICROSERVICE_MENU_API_V1_PORT_80_TCP_ADDR | "10.0.3.211"
|
LTI_LAUNCH_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
CANVAS_SYNC_API_V1_PORT_8081_TCP_PORT | "8081"
|
EVENT_API_V1_PORT_80_TCP_ADDR | "10.0.115.82"
|
GESTAO_USUARIOS_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
INTEGRACAO_CANVAS_V1_SERVICE_HOST | "10.0.197.100"
|
MICROSERVICE_MENU_API_V1_PORT_8081_TCP | "tcp://10.0.3.211:8081"
|
CHANNEL_API_V1_PORT_8081_TCP_PORT | "8081"
|
CONTENTS_API_V1_PORT_8081_TCP_PORT | "8081"
|
EVENT_API_V1_PORT_8081_TCP | "tcp://10.0.115.82:8081"
|
RESOLVE_ADM_V2_WEB_SERVICE_HOST | "10.0.94.156"
|
RESOLVE_V2_WEB_SERVICE_PORT_HTTP | "8088"
|
ECOMMERCE_API_V1_PORT_80_TCP_PORT | "80"
|
PORTAL_CLIENTE_V1_PORT_8081_TCP_PROTO | "tcp"
|
DOMAIN_PUBLIC | "resolve.ftd.com.br"
|
APP_DEBUG | "true"
|
MAIL_USERNAME | "Education"
|
PROFILE_API_V1_PORT | "tcp://10.0.18.240:80"
|
CHANNEL_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V2_FPM_PORT_9000_TCP_PORT | "9000"
|
ECOMMERCE_API_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V3_WEB_SERVICE_PORT_HTTP | "8088"
|
PROFILE_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CANVAS_SYNC_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
PROFILE_V2_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
LICENSE_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
LICENSE_API_V1_PORT | "tcp://10.0.222.113:80"
|
RESOLVE_ADM_V3_WEB_SERVICE_HOST | "10.0.212.37"
|
RESOLVE_ADM_V1_FPM_PORT_9000_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V5_FPM_PORT_9000_TCP_ADDR | "10.0.185.113"
|
INTEGRACAO_CANVAS_V1_PORT_8081_TCP_ADDR | "10.0.197.100"
|
QUANTBOT_API_V0_PORT_80_TCP_PORT | "80"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_80_TCP | "tcp://10.0.87.83:80"
|
PROFILE_V2_PORT | "tcp://10.0.173.85:80"
|
ERP_API_V1_PORT_80_TCP_ADDR | "10.0.165.252"
|
PERFORMANCE_REPORT_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
PROFILE_V2_SERVICE_PORT | "80"
|
CUSTOMER_API_V1_PORT_8081_TCP_ADDR | "10.0.49.67"
|
PROFILE_API_V1_SERVICE_PORT | "80"
|
ERP_API_V1_PORT_8081_TCP | "tcp://10.0.165.252:8081"
|
CONTENTS_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
LICENSE_API_V1_SERVICE_PORT | "80"
|
HOSTNAME | "resolve-v5-7d7fdd49bf-smskb"
|
PHP_INI_DIR | "/usr/local/etc/php"
|
APP_URL | "https://resolve.ftd.com.br"
|
AWS_KEY | "AKIAZQSLNCVE3XSFTXZQ"
|
DB_PORT | "3306"
|
PORTAL_CLIENTE_V1_SERVICE_PORT | "80"
|
GESTAO_USUARIOS_API_V1_PORT | "tcp://10.0.12.100:80"
|
QUANTBOT_API_V0_PORT_80_TCP_PROTO | "tcp"
|
LTI_LAUNCH_API_V1_PORT_80_TCP | "tcp://10.0.50.168:80"
|
ONEROSTER_API_V1_PORT_8081_TCP_PORT | "8081"
|
ADAPTIVE_LEARNING_API_V1_SERVICE_PORT | "80"
|
RESOLVE_ADM_V3_FPM_PORT_9000_TCP_PORT | "9000"
|
PORTAL_CLIENTE_V1_PORT | "tcp://10.0.52.156:80"
|
GESTAO_USUARIOS_API_V1_SERVICE_PORT | "80"
|
GESTAO_USUARIOS_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_ADM_V2_FPM_PORT_9000_TCP_PROTO | "tcp"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_8081_TCP_PORT | "8081"
|
ADAPTIVE_LEARNING_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
PORTAL_CLIENTE_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ACTIVITY_API_V1_SERVICE_HOST | "10.0.221.124"
|
ADAPTIVE_LEARNING_API_V1_PORT | "tcp://10.0.42.118:80"
|
ASSIGNMENT_API_V1_PORT_80_TCP_PORT | "80"
|
CANVAS_SYNC_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CHANNEL_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_ADM_V5_WEB_SERVICE_HOST | "10.0.190.47"
|
MICROSERVICE_MENU_API_V1_PORT_80_TCP_PORT | "80"
|
RESOLVE_ADM_V3_FPM_PORT_9000_TCP_PROTO | "tcp"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_8081_TCP_PROTO | "tcp"
|
SALA_VIRTUAL_BACK_V1_PORT | "tcp://10.0.86.57:80"
|
CONTENTS_API_V1_SERVICE_PORT | "80"
|
PERFORMANCE_REPORT_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
SALA_VIRTUAL_BACK_V1_SERVICE_PORT | "80"
|
CANVAS_SYNC_API_V1_SERVICE_PORT | "80"
|
CHANNEL_API_V1_PORT | "tcp://10.0.67.172:80"
|
SALA_VIRTUAL_BACK_V1_SERVICE_PORT_MANAGEMENT_PORT | "3001"
|
CANVAS_SYNC_API_V1_PORT | "tcp://10.0.88.58:80"
|
PERFORMANCE_REPORT_API_V1_SERVICE_PORT | "80"
|
CANVAS_LAYERS_API_V1_PORT_80_TCP_PORT | "80"
|
CHANNEL_API_V1_SERVICE_PORT | "80"
|
CONTENTS_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CONTENTS_API_V1_PORT | "tcp://10.0.171.216:80"
|
ONEROSTER_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ASSIGNMENT_API_V1_PORT_80_TCP_PROTO | "tcp"
|
PERFORMANCE_REPORT_API_V1_PORT | "tcp://10.0.216.119:80"
|
EVENT_API_V1_PORT_80_TCP_PORT | "80"
|
ACTIVITY_API_V1_PORT_8081_TCP_ADDR | "10.0.221.124"
|
RESOLVE_V5_WEB_SERVICE_PORT_HTTP | "8088"
|
RESOLVE_ADM_V1_FPM_SERVICE_HOST | "10.0.174.205"
|
RESOLVE_V1_FPM_PORT_9000_TCP_ADDR | "10.0.252.96"
|
CUSTOMER_API_V1_PORT_8081_TCP_PORT | "8081"
|
EVENT_API_V1_PORT_80_TCP_PROTO | "tcp"
|
INTEGRACAO_CANVAS_V1_PORT_8081_TCP_PORT | "8081"
|
CANVAS_LAYERS_API_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V5_FPM_PORT_9000_TCP_PORT | "9000"
|
ERP_API_V1_PORT_80_TCP_PORT | "80"
|
MICROSERVICE_MENU_API_V1_PORT_80_TCP_PROTO | "tcp"
|
HOME | "/var/www"
|
ONEROSTER_API_V1_SERVICE_PORT | "80"
|
INTEGRACAO_CANVAS_V1_PORT_8081_TCP_PROTO | "tcp"
|
ONBOARDING_V1_PORT_80_TCP_ADDR | "10.0.138.213"
|
RESOLVE_ADM_V5_FPM_PORT_9000_TCP_PROTO | "tcp"
|
ONEROSTER_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
IONICA_NOTIFICATION_V1_SERVICE_HOST | "10.0.135.195"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_SERVICE_PORT | "80"
|
ONEROUSTER_API_V1_SERVICE_HOST | "10.0.209.232"
|
RESOLVE_V2_FPM_PORT_9000_TCP_ADDR | "10.0.165.81"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT | "tcp://10.0.19.0:80"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ERP_API_V1_PORT_80_TCP_PROTO | "tcp"
|
CUSTOMER_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ONBOARDING_V1_PORT_8081_TCP | "tcp://10.0.138.213:8081"
|
ONEROSTER_API_V1_PORT | "tcp://10.0.148.24:80"
|
RESOLVE_ADM_V2_FPM_SERVICE_HOST | "10.0.118.144"
|
BROADCAST_DRIVER | "log"
|
RESOLVE_ADM_V3_FPM_SERVICE_HOST | "10.0.46.199"
|
ONEROUSTER_API_V1_PORT_8081_TCP_ADDR | "10.0.209.232"
|
ACTIVITY_API_V1_PORT_8081_TCP_PORT | "8081"
|
CALENDAR_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
IONICA_NOTIFICATION_V1_PORT_8081_TCP_ADDR | "10.0.135.195"
|
SECURITI_INTEGRATION_V1_SERVICE_HOST | "10.0.205.50"
|
RESOLVE_V3_FPM_PORT_9000_TCP_ADDR | "10.0.242.53"
|
RESOLVE_ADM_V1_WEB_PORT | "tcp://10.0.15.247:8088"
|
RESOLVE_ADM_V1_WEB_SERVICE_PORT | "8088"
|
RESOLVE_V1_WEB_SERVICE_HOST | "10.0.240.132"
|
PROFILE_API_V1_PORT_8081_TCP | "tcp://10.0.18.240:8081"
|
INTEGRACAO_CANVAS_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
PROFILE_API_V1_PORT_80_TCP_ADDR | "10.0.18.240"
|
LICENSE_API_V1_PORT_80_TCP_ADDR | "10.0.222.113"
|
RESOLVE_ADM_V1_WEB_PORT_8088_TCP_ADDR | "10.0.15.247"
|
SECURITI_INTEGRATION_V1_PORT_8081_TCP_ADDR | "10.0.205.50"
|
CUSTOMER_API_V1_SERVICE_PORT | "80"
|
RESOLVE_ADM_V2_WEB_SERVICE_PORT | "8088"
|
ECOMMERCE_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_ADM_V2_WEB_PORT | "tcp://10.0.94.156:8088"
|
PROFILE_V2_PORT_8081_TCP | "tcp://10.0.173.85:8081"
|
INTEGRACAO_CANVAS_V1_SERVICE_PORT | "80"
|
CUSTOMER_API_V1_PORT | "tcp://10.0.49.67:80"
|
RESOLVE_V1_FPM_PORT_9000_TCP_PORT | "9000"
|
INTEGRACAO_CANVAS_V1_PORT | "tcp://10.0.197.100:80"
|
CUSTOMER_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ACTIVITY_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
SCHOOL_V1_SERVICE_HOST | "10.0.245.80"
|
RESOLVE_V2_WEB_SERVICE_HOST | "10.0.77.231"
|
LICENSE_API_V1_PORT_8081_TCP | "tcp://10.0.222.113:8081"
|
PROFILE_V2_PORT_80_TCP_ADDR | "10.0.173.85"
|
POC_PIPELINE_ARQUITETURA_V1_SERVICE_HOST | "10.0.232.101"
|
PHP_LDFLAGS | "-Wl,-O1 -pie"
|
DB_DATABASE | "ftd_resolve"
|
CALENDAR_API_V1_PORT_80_TCP | "tcp://10.0.91.165:80"
|
RESOLVE_V5_FPM_PORT_9000_TCP_ADDR | "10.0.92.182"
|
ONBOARDING_V1_PORT_80_TCP_PORT | "80"
|
RESOLVE_ADM_V3_WEB_SERVICE_PORT | "8088"
|
RESOLVE_ADM_V3_WEB_PORT | "tcp://10.0.212.37:8088"
|
RESOLVE_ADM_V5_FPM_SERVICE_HOST | "10.0.185.113"
|
QUANTBOT_API_V0_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_V1_FPM_PORT_9000_TCP_PROTO | "tcp"
|
SCHOOL_V1_PORT_8081_TCP_ADDR | "10.0.245.80"
|
PORTAL_CLIENTE_V1_PORT_80_TCP_ADDR | "10.0.52.156"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_8081_TCP_ADDR | "10.0.232.101"
|
ADAPTIVE_LEARNING_API_V1_PORT_8081_TCP | "tcp://10.0.42.118:8081"
|
RESOLVE_V2_FPM_PORT_9000_TCP_PORT | "9000"
|
RESOLVE_V3_WEB_SERVICE_HOST | "10.0.55.88"
|
PORTAL_CLIENTE_V1_PORT_8081_TCP | "tcp://10.0.52.156:8081"
|
RESOLVE_ADM_V2_WEB_PORT_8088_TCP_ADDR | "10.0.94.156"
|
GESTAO_USUARIOS_API_V1_PORT_80_TCP_ADDR | "10.0.12.100"
|
ADAPTIVE_LEARNING_API_V1_PORT_80_TCP_ADDR | "10.0.42.118"
|
GESTAO_USUARIOS_API_V1_PORT_8081_TCP | "tcp://10.0.12.100:8081"
|
PHP_CFLAGS | "-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
MAIL_DRIVER | "smtp"
|
APP_NAME | "Resolve"
|
ONBOARDING_V1_PORT_80_TCP_PROTO | "tcp"
|
CONTENTS_API_V1_PORT_80_TCP_ADDR | "10.0.171.216"
|
PERFORMANCE_REPORT_API_V1_PORT_80_TCP_ADDR | "10.0.216.119"
|
ASSIGNMENT_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ONEROUSTER_API_V1_PORT_8081_TCP_PORT | "8081"
|
CHANNEL_API_V1_PORT_80_TCP_ADDR | "10.0.67.172"
|
SALA_VIRTUAL_BACK_V1_PORT_80_TCP_ADDR | "10.0.86.57"
|
RESOLVE_V2_FPM_PORT_9000_TCP_PROTO | "tcp"
|
CANVAS_SYNC_API_V1_PORT_80_TCP_ADDR | "10.0.88.58"
|
CONTENTS_API_V1_PORT_8081_TCP | "tcp://10.0.171.216:8081"
|
PERFORMANCE_REPORT_API_V1_PORT_8081_TCP | "tcp://10.0.216.119:8081"
|
RESOLVE_ADM_V3_WEB_PORT_8088_TCP_ADDR | "10.0.212.37"
|
CHANNEL_API_V1_PORT_8081_TCP | "tcp://10.0.67.172:8081"
|
ACTIVITY_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ACTIVITY_API_V1_SERVICE_PORT | "80"
|
CANVAS_SYNC_API_V1_PORT_8081_TCP | "tcp://10.0.88.58:8081"
|
RESOLVE_ADM_V1_FPM_PORT_9000_TCP | "tcp://10.0.174.205:9000"
|
RESOLVE_V3_FPM_PORT_9000_TCP_PORT | "9000"
|
ECOMMERCE_API_V1_PORT_80_TCP | "tcp://10.0.243.123:80"
|
IONICA_NOTIFICATION_V1_PORT_8081_TCP_PORT | "8081"
|
ACTIVITY_API_V1_PORT | "tcp://10.0.221.124:80"
|
PHP_VERSION | "7.3.32"
|
RESOLVE_ADM_V5_WEB_SERVICE_PORT | "8088"
|
EVENT_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ONEROUSTER_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V1_WEB_PORT_8088_TCP_PORT | "8088"
|
CANVAS_LAYERS_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
MICROSERVICE_MENU_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
IONICA_NOTIFICATION_V1_PORT_8081_TCP_PROTO | "tcp"
|
PROPOSAL_V1_SERVICE_HOST | "10.0.236.136"
|
RESOLVE_ADM_V5_WEB_PORT | "tcp://10.0.190.47:8088"
|
IDENTITY_API_V1_SERVICE_HOST | "10.0.43.34"
|
RESOLVE_ADM_V2_FPM_PORT_9000_TCP | "tcp://10.0.118.144:9000"
|
RESOLVE_V3_FPM_PORT_9000_TCP_PROTO | "tcp"
|
RESOLVE_V5_WEB_SERVICE_HOST | "10.0.63.222"
|
PROFILE_API_V1_PORT_80_TCP_PORT | "80"
|
LICENSE_API_V1_PORT_80_TCP_PORT | "80"
|
PROFILE_V2_PORT_80_TCP_PORT | "80"
|
SECURITI_INTEGRATION_V1_PORT_8081_TCP_PORT | "8081"
|
QUANTBOT_API_V0_PORT_80_TCP | "tcp://10.0.13.35:80"
|
SESSION_DRIVER | "redis"
|
GESTAO_USUARIOS_API_V1_PORT_80_TCP_PORT | "80"
|
MICROSERVICE_DROPSHIPPING_V1_SERVICE_HOST | "10.0.16.86"
|
RESOLVE_V1_FPM_SERVICE_HOST | "10.0.252.96"
|
PROFILE_API_V1_PORT_80_TCP_PROTO | "tcp"
|
SECURITI_INTEGRATION_V1_PORT_8081_TCP_PROTO | "tcp"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_8081_TCP | "tcp://10.0.19.0:8081"
|
SCHOOL_V1_PORT_8081_TCP_PORT | "8081"
|
ONEROSTER_API_V1_PORT_80_TCP_ADDR | "10.0.148.24"
|
RESOLVE_V5_FPM_PORT_9000_TCP_PORT | "9000"
|
RESOLVE_ADM_V2_WEB_PORT_8088_TCP_PORT | "8088"
|
RESOLVE_ADM_V1_WEB_PORT_8088_TCP_PROTO | "tcp"
|
LICENSE_API_V1_PORT_80_TCP_PROTO | "tcp"
|
IDENTITY_API_V1_PORT_8081_TCP_ADDR | "10.0.43.34"
|
ERP_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_ADM_V1_FPM_SERVICE_PORT | "9000"
|
ONEROSTER_API_V1_PORT_8081_TCP | "tcp://10.0.148.24:8081"
|
RESOLVE_ADM_V1_FPM_PORT | "tcp://10.0.174.205:9000"
|
ASSIGNMENT_API_V1_PORT_80_TCP | "tcp://10.0.223.12:80"
|
PROPOSAL_V1_PORT_8081_TCP_ADDR | "10.0.236.136"
|
PORTAL_CLIENTE_V1_PORT_80_TCP_PORT | "80"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_8081_TCP_PORT | "8081"
|
RESOLVE_ADM_V5_WEB_PORT_8088_TCP_ADDR | "10.0.190.47"
|
ADAPTIVE_LEARNING_API_V1_PORT_80_TCP_PORT | "80"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_80_TCP_ADDR | "10.0.19.0"
|
PROFILE_V2_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V3_FPM_PORT_9000_TCP | "tcp://10.0.46.199:9000"
|
GPG_KEYS | "CBAF69F173A0FEA4B537F470D66C9593118BCCB6 F38252826ACD957EF380D39F2F7956BC5DA04B5D"
|
LOG_CHANNEL | "stderr"
|
DB_USERNAME | "ftd_resolve@az-mysql57"
|
IONICA_NOTIFICATION_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ONEROUSTER_API_V1_PORT | "tcp://10.0.209.232:80"
|
PORTAL_CLIENTE_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V2_FPM_SERVICE_HOST | "10.0.165.81"
|
QUANTBOT_API_V0_PORT_3001_TCP_ADDR | "10.0.13.35"
|
EVENT_API_V1_PORT_80_TCP | "tcp://10.0.115.82:80"
|
IONICA_NOTIFICATION_V1_SERVICE_PORT | "80"
|
IONICA_NOTIFICATION_V1_PORT | "tcp://10.0.135.195:80"
|
RESOLVE_ADM_V2_FPM_PORT | "tcp://10.0.118.144:9000"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_8081_TCP_PROTO | "tcp"
|
SCHOOL_V1_PORT_8081_TCP_PROTO | "tcp"
|
CONTENTS_API_V1_PORT_80_TCP_PORT | "80"
|
RESOLVE_ADM_V3_WEB_PORT_8088_TCP_PORT | "8088"
|
RESOLVE_V5_FPM_PORT_9000_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V2_WEB_PORT_8088_TCP_PROTO | "tcp"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_8081_TCP_ADDR | "10.0.16.86"
|
PERFORMANCE_REPORT_API_V1_PORT_80_TCP_PORT | "80"
|
CANVAS_SYNC_API_V1_PORT_80_TCP_PORT | "80"
|
MICROSERVICE_MENU_API_V1_PORT_80_TCP | "tcp://10.0.3.211:80"
|
ONEROUSTER_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CHANNEL_API_V1_PORT_80_TCP_PORT | "80"
|
RESOLVE_ADM_V2_FPM_SERVICE_PORT | "9000"
|
ONEROUSTER_API_V1_SERVICE_PORT | "80"
|
SALA_VIRTUAL_BACK_V1_PORT_80_TCP_PORT | "80"
|
CANVAS_LAYERS_API_V1_PORT_80_TCP | "tcp://10.0.203.211:80"
|
ADAPTIVE_LEARNING_API_V1_PORT_80_TCP_PROTO | "tcp"
|
GESTAO_USUARIOS_API_V1_PORT_80_TCP_PROTO | "tcp"
|
PHP_CPPFLAGS | "-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
PHP_ASC_URL | "https://www.php.net/distributions/php-7.3.32.tar.xz.asc"
|
CUSTOMER_API_V1_PORT_80_TCP_ADDR | "10.0.49.67"
|
CANVAS_SYNC_API_V1_PORT_80_TCP_PROTO | "tcp"
|
SECURITI_INTEGRATION_V1_SERVICE_PORT | "80"
|
CONTENTS_API_V1_PORT_80_TCP_PROTO | "tcp"
|
ERP_API_V1_PORT_80_TCP | "tcp://10.0.165.252:80"
|
CUSTOMER_API_V1_PORT_8081_TCP | "tcp://10.0.49.67:8081"
|
RESOLVE_ADM_V3_FPM_PORT | "tcp://10.0.46.199:9000"
|
INTEGRACAO_CANVAS_V1_PORT_8081_TCP | "tcp://10.0.197.100:8081"
|
RESOLVE_V3_FPM_SERVICE_HOST | "10.0.242.53"
|
PERFORMANCE_REPORT_API_V1_PORT_80_TCP_PROTO | "tcp"
|
SALA_VIRTUAL_BACK_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V1_WEB_PORT | "tcp://10.0.240.132:8088"
|
SECURITI_INTEGRATION_V1_PORT | "tcp://10.0.205.50:80"
|
INTEGRACAO_CANVAS_V1_PORT_80_TCP_ADDR | "10.0.197.100"
|
RESOLVE_ADM_V3_WEB_PORT_8088_TCP_PROTO | "tcp"
|
CHANNEL_API_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V3_FPM_SERVICE_PORT | "9000"
|
SECURITI_INTEGRATION_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_ADM_V5_FPM_PORT_9000_TCP | "tcp://10.0.185.113:9000"
|
RESOLVE_V1_WEB_SERVICE_PORT | "8088"
|
ONEROSTER_API_V1_PORT_80_TCP_PORT | "80"
|
SCHOOL_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
POC_PIPELINE_ARQUITETURA_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
SCHOOL_V1_PORT | "tcp://10.0.245.80:80"
|
RESOLVE_ADM_V5_WEB_PORT_8088_TCP_PORT | "8088"
|
RESOLVE_V1_WEB_PORT_8088_TCP_ADDR | "10.0.240.132"
|
POC_PIPELINE_ARQUITETURA_V1_SERVICE_PORT | "80"
|
RESOLVE_V2_WEB_PORT | "tcp://10.0.77.231:8088"
|
IDENTITY_API_V1_PORT_8081_TCP_PORT | "8081"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_80_TCP_PORT | "80"
|
SCHOOL_V1_SERVICE_PORT | "80"
|
PROPOSAL_V1_PORT_8081_TCP_PORT | "8081"
|
RESOLVE_V2_WEB_SERVICE_PORT | "8088"
|
POC_PIPELINE_ARQUITETURA_V1_PORT | "tcp://10.0.232.101:80"
|
PHP_URL | "https://www.php.net/distributions/php-7.3.32.tar.xz"
|
CACHE_DRIVER | "redis"
|
QUEUE_DRIVER | "sync"
|
RESOLVE_V5_FPM_SERVICE_HOST | "10.0.92.182"
|
RESOLVE_ADM_V5_FPM_PORT | "tcp://10.0.185.113:9000"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_80_TCP_PROTO | "tcp"
|
ACTIVITY_API_V1_PORT_8081_TCP | "tcp://10.0.221.124:8081"
|
ONEROSTER_API_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V3_WEB_SERVICE_PORT | "8088"
|
RESOLVE_V3_WEB_PORT | "tcp://10.0.55.88:8088"
|
IDENTITY_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_V2_WEB_PORT_8088_TCP_ADDR | "10.0.77.231"
|
RESOLVE_ADM_V5_FPM_SERVICE_PORT | "9000"
|
QUANTBOT_API_V0_PORT_3001_TCP_PORT | "3001"
|
ONBOARDING_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ACTIVITY_API_V1_PORT_80_TCP_ADDR | "10.0.221.124"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_8081_TCP_PORT | "8081"
|
ONBOARDING_TOPIC_CONSUMER_V1_SERVICE_HOST | "10.0.87.83"
|
PROPOSAL_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V5_WEB_PORT_8088_TCP_PROTO | "tcp"
|
MAIL_ENCRYPTION | "TLS"
|
INTEGRACAO_CANVAS_V1_PORT_80_TCP_PORT | "80"
|
QUANTBOT_API_V0_PORT_3001_TCP_PROTO | "tcp"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_8081_TCP_ADDR | "10.0.87.83"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_V1_FPM_PORT_9000_TCP | "tcp://10.0.252.96:9000"
|
RESOLVE_V3_WEB_PORT_8088_TCP_ADDR | "10.0.55.88"
|
CUSTOMER_API_V1_PORT_80_TCP_PORT | "80"
|
LTI_LAUNCH_API_V1_SERVICE_HOST | "10.0.50.168"
|
PROPOSAL_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_V5_WEB_SERVICE_PORT | "8088"
|
RESOLVE_V2_FPM_PORT_9000_TCP | "tcp://10.0.165.81:9000"
|
PROPOSAL_V1_SERVICE_PORT | "80"
|
IDENTITY_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
KUBERNETES_PORT_443_TCP_ADDR | "10.0.0.1"
|
ONBOARDING_V1_PORT_80_TCP | "tcp://10.0.138.213:80"
|
IDENTITY_API_V1_PORT | "tcp://10.0.43.34:80"
|
PROFILE_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
INTEGRACAO_CANVAS_V1_PORT_80_TCP_PROTO | "tcp"
|
LICENSE_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
IDENTITY_API_V1_SERVICE_PORT | "80"
|
RESOLVE_V5_WEB_PORT | "tcp://10.0.63.222:8088"
|
RESOLVE_V1_WEB_PORT_8088_TCP_PORT | "8088"
|
PROPOSAL_V1_PORT | "tcp://10.0.236.136:80"
|
LTI_LAUNCH_API_V1_PORT_8081_TCP_ADDR | "10.0.50.168"
|
CUSTOMER_API_V1_PORT_80_TCP_PROTO | "tcp"
|
PROFILE_V2_SERVICE_PORT_HTTP_PORT | "80"
|
IONICA_NOTIFICATION_V1_PORT_8081_TCP | "tcp://10.0.135.195:8081"
|
RESOLVE_V2_WEB_PORT_8088_TCP_PORT | "8088"
|
ADAPTIVE_LEARNING_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_V3_FPM_PORT_9000_TCP | "tcp://10.0.242.53:9000"
|
ONEROUSTER_API_V1_PORT_8081_TCP | "tcp://10.0.209.232:8081"
|
RESOLVE_V5_WEB_PORT_8088_TCP_ADDR | "10.0.63.222"
|
RESOLVE_V1_FPM_SERVICE_PORT | "9000"
|
MICROSERVICE_DROPSHIPPING_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
GESTAO_USUARIOS_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ONEROUSTER_API_V1_PORT_80_TCP_ADDR | "10.0.209.232"
|
RESOLVE_V1_WEB_PORT_8088_TCP_PROTO | "tcp"
|
IONICA_NOTIFICATION_V1_PORT_80_TCP_ADDR | "10.0.135.195"
|
RESOLVE_V1_FPM_PORT | "tcp://10.0.252.96:9000"
|
MICROSERVICE_DROPSHIPPING_V1_SERVICE_PORT | "80"
|
MICROSERVICE_DROPSHIPPING_V1_PORT | "tcp://10.0.16.86:80"
|
PORTAL_CLIENTE_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ACTIVITY_API_V1_PORT_80_TCP_PORT | "80"
|
PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
CHANNEL_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_ADM_V1_WEB_PORT_8088_TCP | "tcp://10.0.15.247:8088"
|
PROFILE_API_V1_PORT_80_TCP | "tcp://10.0.18.240:80"
|
RESOLVE_V2_FPM_SERVICE_PORT | "9000"
|
ACTIVITY_API_V1_PORT_80_TCP_PROTO | "tcp"
|
CANVAS_SYNC_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_V2_FPM_PORT | "tcp://10.0.165.81:9000"
|
PERFORMANCE_REPORT_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_V2_WEB_PORT_8088_TCP_PROTO | "tcp"
|
LICENSE_API_V1_PORT_80_TCP | "tcp://10.0.222.113:80"
|
SECURITI_INTEGRATION_V1_PORT_8081_TCP | "tcp://10.0.205.50:8081"
|
SECURITI_INTEGRATION_V1_PORT_80_TCP_ADDR | "10.0.205.50"
|
RESOLVE_V3_WEB_PORT_8088_TCP_PORT | "8088"
|
CONTENTS_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
PROFILE_V2_PORT_80_TCP | "tcp://10.0.173.85:80"
|
SALA_VIRTUAL_BACK_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_8081_TCP_PORT | "8081"
|
AWS_BUCKET | "ftd-resolve"
|
MAIL_PASSWORD | "md-xAdaczIEJGO4xjSijLADWA"
|
SCHOOL_V1_PORT_80_TCP_ADDR | "10.0.245.80"
|
RESOLVE_V5_FPM_PORT_9000_TCP | "tcp://10.0.92.182:9000"
|
RESOLVE_ADM_V2_WEB_PORT_8088_TCP | "tcp://10.0.94.156:8088"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_8081_TCP | "tcp://10.0.232.101:8081"
|
PORTAL_CLIENTE_V1_PORT_80_TCP | "tcp://10.0.52.156:80"
|
ADAPTIVE_LEARNING_API_V1_PORT_80_TCP | "tcp://10.0.42.118:80"
|
SCHOOL_V1_PORT_8081_TCP | "tcp://10.0.245.80:8081"
|
GESTAO_USUARIOS_API_V1_PORT_80_TCP | "tcp://10.0.12.100:80"
|
KUBERNETES_PORT_443_TCP_PORT | "443"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_80_TCP_ADDR | "10.0.232.101"
|
RESOLVE_V3_WEB_PORT_8088_TCP_PROTO | "tcp"
|
LTI_LAUNCH_API_V1_PORT_8081_TCP_PORT | "8081"
|
RESOLVE_V3_FPM_SERVICE_PORT | "9000"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_V3_FPM_PORT | "tcp://10.0.242.53:9000"
|
LOG_STDERR_FORMATTER | "Monolog\Formatter\JsonFormatter"
|
KUBERNETES_PORT_443_TCP_PROTO | "tcp"
|
LTI_LAUNCH_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
IONICA_NOTIFICATION_V1_PORT_80_TCP_PORT | "80"
|
CANVAS_SYNC_API_V1_PORT_80_TCP | "tcp://10.0.88.58:80"
|
ONEROUSTER_API_V1_PORT_80_TCP_PORT | "80"
|
CONTENTS_API_V1_PORT_80_TCP | "tcp://10.0.171.216:80"
|
ONEROSTER_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
SALA_VIRTUAL_BACK_V1_PORT_80_TCP | "tcp://10.0.86.57:80"
|
RESOLVE_ADM_V3_WEB_PORT_8088_TCP | "tcp://10.0.212.37:8088"
|
PERFORMANCE_REPORT_API_V1_PORT_80_TCP | "tcp://10.0.216.119:80"
|
CHANNEL_API_V1_PORT_80_TCP | "tcp://10.0.67.172:80"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_SERVICE_PORT_HTTP_PORT | "80"
|
RESOLVE_V5_WEB_PORT_8088_TCP_PORT | "8088"
|
CALENDAR_API_V1_SERVICE_HOST | "10.0.91.165"
|
ONBOARDING_TOPIC_CONSUMER_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_V5_WEB_PORT_8088_TCP_PROTO | "tcp"
|
ONBOARDING_TOPIC_CONSUMER_V1_SERVICE_PORT | "80"
|
RESOLVE_V5_FPM_SERVICE_PORT | "9000"
|
IONICA_NOTIFICATION_V1_PORT_80_TCP_PROTO | "tcp"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT | "tcp://10.0.87.83:80"
|
ONEROUSTER_API_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V5_FPM_PORT | "tcp://10.0.92.182:9000"
|
SECURITI_INTEGRATION_V1_PORT_80_TCP_PORT | "80"
|
MAIL_HOST | "smtp.mandrillapp.com"
|
CODE_COOKIES | "01902df1-392c-7dcd-8a6d-080e6347afee"
|
LTI_LAUNCH_API_V1_PORT | "tcp://10.0.50.168:80"
|
SALA_VIRTUAL_BACK_V1_PORT_3001_TCP_ADDR | "10.0.86.57"
|
PROPOSAL_V1_PORT_8081_TCP | "tcp://10.0.236.136:8081"
|
CUSTOMER_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ECOMMERCE_API_V1_SERVICE_HOST | "10.0.243.123"
|
SECURITI_INTEGRATION_V1_PORT_80_TCP_PROTO | "tcp"
|
SCHOOL_V1_PORT_80_TCP_PORT | "80"
|
PROPOSAL_V1_PORT_80_TCP_ADDR | "10.0.236.136"
|
MICROSERVICE_VITRINE_ECOMMERCE_V1_PORT_80_TCP | "tcp://10.0.19.0:80"
|
LTI_LAUNCH_API_V1_SERVICE_PORT | "80"
|
IDENTITY_API_V1_PORT_8081_TCP | "tcp://10.0.43.34:8081"
|
RESOLVE_ADM_V5_WEB_PORT_8088_TCP | "tcp://10.0.190.47:8088"
|
IDENTITY_API_V1_PORT_80_TCP_ADDR | "10.0.43.34"
|
LTI_LAUNCH_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
CALENDAR_API_V1_PORT_8081_TCP_ADDR | "10.0.91.165"
|
INTEGRACAO_CANVAS_V1_SERVICE_PORT_HTTP_PORT | "80"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_80_TCP_PORT | "80"
|
ONEROSTER_API_V1_PORT_80_TCP | "tcp://10.0.148.24:80"
|
APP_LOG | "errorlog"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_80_TCP_PROTO | "tcp"
|
QUANTBOT_API_V0_SERVICE_HOST | "10.0.13.35"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_80_TCP_ADDR | "10.0.16.86"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_8081_TCP | "tcp://10.0.16.86:8081"
|
QUANTBOT_API_V0_PORT_3001_TCP | "tcp://10.0.13.35:3001"
|
SCHOOL_V1_PORT_80_TCP_PROTO | "tcp"
|
ECOMMERCE_API_V1_PORT_8081_TCP_ADDR | "10.0.243.123"
|
ASSIGNMENT_API_V1_SERVICE_HOST | "10.0.223.12"
|
ACTIVITY_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
CUSTOMER_API_V1_PORT_80_TCP | "tcp://10.0.49.67:80"
|
INTEGRACAO_CANVAS_V1_PORT_80_TCP | "tcp://10.0.197.100:80"
|
AWS_REGION | "sa-east-1"
|
MICROSERVICE_MENU_API_V1_SERVICE_HOST | "10.0.3.211"
|
CANVAS_LAYERS_API_V1_SERVICE_HOST | "10.0.203.211"
|
SALA_VIRTUAL_BACK_V1_PORT_3001_TCP_PORT | "3001"
|
RESOLVE_V1_WEB_PORT_8088_TCP | "tcp://10.0.240.132:8088"
|
PROPOSAL_V1_PORT_80_TCP_PORT | "80"
|
EVENT_API_V1_SERVICE_HOST | "10.0.115.82"
|
CALENDAR_API_V1_PORT_8081_TCP_PORT | "8081"
|
ASSIGNMENT_API_V1_PORT_8081_TCP_ADDR | "10.0.223.12"
|
IDENTITY_API_V1_PORT_80_TCP_PORT | "80"
|
APP_LOG_LEVEL | "debug"
|
MICROSERVICE_MENU_API_V1_PORT_8081_TCP_ADDR | "10.0.3.211"
|
ECOMMERCE_API_V1_PORT_8081_TCP_PORT | "8081"
|
ACTIVITY_API_V1_PORT_80_TCP | "tcp://10.0.221.124:80"
|
RESOLVE_V2_WEB_PORT_8088_TCP | "tcp://10.0.77.231:8088"
|
SALA_VIRTUAL_BACK_V1_PORT_3001_TCP_PROTO | "tcp"
|
CANVAS_LAYERS_API_V1_PORT_8081_TCP_ADDR | "10.0.203.211"
|
PROPOSAL_V1_PORT_80_TCP_PROTO | "tcp"
|
IDENTITY_API_V1_PORT_80_TCP_PROTO | "tcp"
|
CALENDAR_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ERP_API_V1_SERVICE_HOST | "10.0.165.252"
|
EVENT_API_V1_PORT_8081_TCP_ADDR | "10.0.115.82"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_80_TCP_PORT | "80"
|
AWS_SECRET | "AcRJCORNkwUgzIOWfDY7UuTOalGlu8Ko1RFiCtP8"
|
REDIS_PASSWORD | "1JcJZLekijsDPYZKLBvrZvKSroqNTxIDSI0Is3UpjyU="
|
ONEROUSTER_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_80_TCP_PROTO | "tcp"
|
RESOLVE_V3_WEB_PORT_8088_TCP | "tcp://10.0.55.88:8088"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_8081_TCP | "tcp://10.0.87.83:8081"
|
ERP_API_V1_PORT_8081_TCP_ADDR | "10.0.165.252"
|
IONICA_NOTIFICATION_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ECOMMERCE_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_80_TCP_ADDR | "10.0.87.83"
|
LTI_LAUNCH_API_V1_PORT_8081_TCP | "tcp://10.0.50.168:8081"
|
KUBERNETES_PORT_443_TCP | "tcp://10.0.0.1:443"
|
CALENDAR_API_V1_PORT | "tcp://10.0.91.165:80"
|
CALENDAR_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
KUBERNETES_SERVICE_PORT_HTTPS | "443"
|
ASSIGNMENT_API_V1_PORT_8081_TCP_PORT | "8081"
|
CALENDAR_API_V1_SERVICE_PORT | "80"
|
SECURITI_INTEGRATION_V1_SERVICE_PORT_HTTP_PORT | "80"
|
LTI_LAUNCH_API_V1_PORT_80_TCP_ADDR | "10.0.50.168"
|
SERVER_TYPE | "public"
|
MAIL_PORT | "587"
|
ECOMMERCE_API_V1_PORT | "tcp://10.0.243.123:80"
|
SCHOOL_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ECOMMERCE_API_V1_SERVICE_PORT | "80"
|
MICROSERVICE_MENU_API_V1_PORT_8081_TCP_PORT | "8081"
|
POC_PIPELINE_ARQUITETURA_V1_SERVICE_PORT_HTTP_PORT | "80"
|
ONEROUSTER_API_V1_PORT_80_TCP | "tcp://10.0.209.232:80"
|
CANVAS_LAYERS_API_V1_PORT_8081_TCP_PORT | "8081"
|
ASSIGNMENT_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
IONICA_NOTIFICATION_V1_PORT_80_TCP | "tcp://10.0.135.195:80"
|
RESOLVE_V5_WEB_PORT_8088_TCP | "tcp://10.0.63.222:8088"
|
EVENT_API_V1_PORT_8081_TCP_PORT | "8081"
|
ECOMMERCE_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
PHPIZE_DEPS | "autoconf \t\tdpkg-dev \t\tfile \t\tg++ \t\tgcc \t\tlibc-dev \t\tmake \t\tpkg-config \t\tre2c"
|
APP_ENV | "production "
|
REDIS_HOST | "redis-server-prod.redis.cache.windows.net"
|
DB_PASSWORD | "wzYaVZnHM22kASm5"
|
APP_KEY | "base64:EGo0YTthasSJWDMRuaCOcSqx/T9eyztgWvnlUP6QP1U="
|
RESOLVE_ADM_V1_WEB_SERVICE_PORT_HTTP | "8088"
|
ONBOARDING_V1_SERVICE_HOST | "10.0.138.213"
|
QUANTBOT_API_V0_PORT | "tcp://10.0.13.35:80"
|
MICROSERVICE_MENU_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
QUANTBOT_API_V0_SERVICE_PORT | "80"
|
CANVAS_LAYERS_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ERP_API_V1_PORT_8081_TCP_PORT | "8081"
|
EVENT_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
QUANTBOT_API_V0_SERVICE_PORT_MANAGEMENT_PORT | "3001"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_80_TCP_PORT | "80"
|
SECURITI_INTEGRATION_V1_PORT_80_TCP | "tcp://10.0.205.50:80"
|
KUBERNETES_SERVICE_HOST | "10.0.0.1"
|
PWD | "/app"
|
PHP_SHA256 | "94effa250b80f031e77fbd98b6950c441157a2a8f9e076ee68e02f5b0b7a3fd9"
|
DOMAIN_ADMIN | "admin-resolve.ftd.com.br"
|
SCHOOL_V1_PORT_80_TCP | "tcp://10.0.245.80:80"
|
ASSIGNMENT_API_V1_SERVICE_PORT | "80"
|
ASSIGNMENT_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ERP_API_V1_PORT_8081_TCP_PROTO | "tcp"
|
ONBOARDING_V1_PORT_8081_TCP_ADDR | "10.0.138.213"
|
POC_PIPELINE_ARQUITETURA_V1_PORT_80_TCP | "tcp://10.0.232.101:80"
|
ASSIGNMENT_API_V1_PORT | "tcp://10.0.223.12:80"
|
RESOLVE_ADM_V2_WEB_SERVICE_PORT_HTTP | "8088"
|
ONBOARDING_TOPIC_CONSUMER_V1_PORT_80_TCP_PROTO | "tcp"
|
LTI_LAUNCH_API_V1_PORT_80_TCP_PORT | "80"
|
REDIS_SCHEME | "tls"
|
CANVAS_LAYERS_API_V1_PORT | "tcp://10.0.203.211:80"
|
MICROSERVICE_MENU_API_V1_PORT | "tcp://10.0.3.211:80"
|
LTI_LAUNCH_API_V1_PORT_80_TCP_PROTO | "tcp"
|
CANVAS_LAYERS_API_V1_SERVICE_PORT | "80"
|
MICROSERVICE_MENU_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
RESOLVE_ADM_V3_WEB_SERVICE_PORT_HTTP | "8088"
|
PROPOSAL_V1_SERVICE_PORT_HTTP_PORT | "80"
|
EVENT_API_V1_PORT | "tcp://10.0.115.82:80"
|
EVENT_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
PROFILE_V2_SERVICE_HOST | "10.0.173.85"
|
PROFILE_API_V1_SERVICE_HOST | "10.0.18.240"
|
LICENSE_API_V1_SERVICE_HOST | "10.0.222.113"
|
IDENTITY_API_V1_SERVICE_PORT_HTTP_PORT | "80"
|
CANVAS_LAYERS_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
MICROSERVICE_MENU_API_V1_SERVICE_PORT | "80"
|
EVENT_API_V1_SERVICE_PORT | "80"
|
DB_HOST | "az-mysql57.mysql.database.azure.com"
|
LICENSE_API_V1_PORT_8081_TCP_ADDR | "10.0.222.113"
|
PORTAL_CLIENTE_V1_SERVICE_HOST | "10.0.52.156"
|
ERP_API_V1_SERVICE_PORT_MANAGEMENT_PORT | "8081"
|
ERP_API_V1_PORT | "tcp://10.0.165.252:80"
|
PROFILE_V2_PORT_8081_TCP_ADDR | "10.0.173.85"
|
ERP_API_V1_SERVICE_PORT | "80"
|
GESTAO_USUARIOS_API_V1_SERVICE_HOST | "10.0.12.100"
|
ADAPTIVE_LEARNING_API_V1_SERVICE_HOST | "10.0.42.118"
|
MICROSERVICE_DROPSHIPPING_V1_SERVICE_PORT_HTTP_PORT | "80"
|
PROFILE_API_V1_PORT_8081_TCP_ADDR | "10.0.18.240"
|
PERFORMANCE_REPORT_API_V1_SERVICE_HOST | "10.0.216.119"
|
PROPOSAL_V1_PORT_80_TCP | "tcp://10.0.236.136:80"
|
CONTENTS_API_V1_SERVICE_HOST | "10.0.171.216"
|
PORTAL_CLIENTE_V1_PORT_8081_TCP_ADDR | "10.0.52.156"
|
GESTAO_USUARIOS_API_V1_PORT_8081_TCP_ADDR | "10.0.12.100"
|
CALENDAR_API_V1_PORT_8081_TCP | "tcp://10.0.91.165:8081"
|
CANVAS_SYNC_API_V1_SERVICE_HOST | "10.0.88.58"
|
ADAPTIVE_LEARNING_API_V1_PORT_8081_TCP_ADDR | "10.0.42.118"
|
CALENDAR_API_V1_PORT_80_TCP_ADDR | "10.0.91.165"
|
SALA_VIRTUAL_BACK_V1_SERVICE_HOST | "10.0.86.57"
|
ONBOARDING_V1_PORT_8081_TCP_PORT | "8081"
|
CHANNEL_API_V1_SERVICE_HOST | "10.0.67.172"
|
RESOLVE_ADM_V5_WEB_SERVICE_PORT_HTTP | "8088"
|
IDENTITY_API_V1_PORT_80_TCP | "tcp://10.0.43.34:80"
|
SALA_VIRTUAL_BACK_V1_PORT_3001_TCP | "tcp://10.0.86.57:3001"
|
ONBOARDING_V1_PORT_8081_TCP_PROTO | "tcp"
|
RESOLVE_ADM_V1_FPM_PORT_9000_TCP_ADDR | "10.0.174.205"
|
CONTENTS_API_V1_PORT_8081_TCP_ADDR | "10.0.171.216"
|
CANVAS_SYNC_API_V1_PORT_8081_TCP_ADDR | "10.0.88.58"
|
MICROSERVICE_DROPSHIPPING_V1_PORT_80_TCP | "tcp://10.0.16.86:80"
|
ECOMMERCE_API_V1_PORT_80_TCP_ADDR | "10.0.243.123"
|
CHANNEL_API_V1_PORT_8081_TCP_ADDR | "10.0.67.172"
|
PERFORMANCE_REPORT_API_V1_PORT_8081_TCP_ADDR | "10.0.216.119"
|
ECOMMERCE_API_V1_PORT_8081_TCP | "tcp://10.0.243.123:8081"
|
USER | "www-data"
|
HTTP_COOKIE | "XSRF-TOKEN=eyJpdiI6Iks5MURwS0x3c2txUVVzNVRPNFZCbUE9PSIsInZhbHVlIjoidlROQUVnVHdSMGliVG5qUitXTWhXXC9NdE15SHdUbmRxazh1SjJHd3U3dHlTa1NMbDA3bkVvY25oNWdiNitFTjUiLCJtYWMiOiI3MmY2YjZiZjVkZmZmNGViYjBkZmVjNzQ4YmVlMTM4NzQzZjZkMjJiZTFhZDM2YTdmN2ViYWY4OTlkYTI4MmI1In0%3D; resolve_session=eyJpdiI6IlpyQkFTd3ZDcXpOWUVuMmVQeXpqd2c9PSIsInZhbHVlIjoiYmNCMlRqVno4RWYyK0JVejdNTGJcL3ArSE9NbEI1YW5MVXlUZnByUG4xR1h5Vng3TjY1TGhFVWdlU0NRcEZ5NFpUZm55bFdnTHI2QTErNDM5TmxnRU1PNnFxYUEwOE5lRDBBbjlHdk5nZFRsVDd3WXhGbWFlTFlLTU9NUWM5amFGIiwibWFjIjoiZTUwN2QyY2VlMTM4NWFkMzg4MjRlMWQ0NjEzODUzOWM2YmE0OTM3ZThiNTgyMTVkOGQ4NjIyNmE5ZDNiNmIyNiJ9"
|
HTTP_CF_CONNECTING_IP | "216.73.216.161"
|
HTTP_CF_VISITOR | "{"scheme":"https"}"
|
HTTP_CF_IPCOUNTRY | "US"
|
HTTP_ACCEPT | "*/*"
|
HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])"
|
HTTP_ACCEPT_ENCODING | "gzip, br"
|
HTTP_CDN_LOOP | "cloudflare; loops=1"
|
HTTP_CF_RAY | "977a7f532fde227c-GRU"
|
HTTP_X_ORIGINAL_FORWARDED_FOR | "216.73.216.161"
|
HTTP_X_SCHEME | "https"
|
HTTP_X_FORWARDED_PROTO | "https"
|
HTTP_X_FORWARDED_PORT | "443"
|
HTTP_X_FORWARDED_HOST | "resolve.ftd.com.br"
|
HTTP_X_FORWARDED_FOR | "10.240.0.16"
|
HTTP_X_REAL_IP | "10.240.0.16"
|
HTTP_X_REQUEST_ID | "a4a01b4439c76b035f0f473ca7bf16b8"
|
HTTP_HOST | "resolve.ftd.com.br"
|
PATH_INFO | "" |
SCRIPT_FILENAME | "/app/public/index.php"
|
REDIRECT_STATUS | "200"
|
SERVER_NAME | "resolve-hml.ftd.com.br"
|
SERVER_PORT | "80"
|
SERVER_ADDR | "10.244.10.253"
|
REMOTE_PORT | "37892"
|
REMOTE_ADDR | "10.244.0.133"
|
SERVER_SOFTWARE | "nginx/1.19.10"
|
GATEWAY_INTERFACE | "CGI/1.1"
|
REQUEST_SCHEME | "http"
|
SERVER_PROTOCOL | "HTTP/1.1"
|
DOCUMENT_ROOT | "/app/public"
|
DOCUMENT_URI | "/index.php"
|
REQUEST_URI | "/2018/dia/1"
|
SCRIPT_NAME | "/index.php"
|
CONTENT_LENGTH | "" |
CONTENT_TYPE | "" |
REQUEST_METHOD | "GET"
|
QUERY_STRING | "" |
FCGI_ROLE | "RESPONDER"
|
PHP_SELF | "/index.php"
|
REQUEST_TIME_FLOAT | 1756622016.5853
|
REQUEST_TIME | 1756622016
|
argv | [] |
argc | 0
|