<?php
/**
 * qq.com — default_server catch-all
 * Minimal PHP file to prevent Nginx try_files from failing and exhausting file descriptors.
 */
header('Content-Type: text/html; charset=utf-8');
http_response_code(200);
?>
<!doctype html>
<html><head><meta charset="utf-8"><title>qq.com</title></head>
<body><h1>Default Server</h1><p>qq.com</p></body>
</html>
