envoy
tcp/443
Open service 2.16.164.75:443 ยท chsso.hungama.com
2026-01-23 00:12
HTTP/1.1 200 OK
Content-Type: application/octet-stream
Content-Length: 569
Last-Modified: Wed, 07 Jan 2026 12:23:04 GMT
ETag: "695e5028-239"
Accept-Ranges: bytes
x-envoy-upstream-service-time: 1
Server: envoy
Expires: Fri, 23 Jan 2026 00:12:12 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Fri, 23 Jan 2026 00:12:12 GMT
Alt-Svc: h3=":443"; ma=93600,h3-29=":443"; ma=93600
Connection: close
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) ?? ''
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php';