We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a08445f commit 3edc98eCopy full SHA for 3edc98e
ProcessMaker/Http/Middleware/HideServerHeaders.php
@@ -41,8 +41,6 @@ class HideServerHeaders
41
'X-Cache-Status',
42
'X-Served-From',
43
'X-Content-Source',
44
- 'X-Request-ID',
45
- 'X-Request-Id',
46
47
// PHP specific headers
48
'X-PHP-Version',
@@ -71,7 +69,7 @@ public function handle(Request $request, Closure $next): Response
71
69
}
72
70
73
// Set a generic server header to avoid revealing the absence
74
- $response->headers->set('Server', 'Web Server');
+ $response->headers->set('Server', 'ProcessMaker Server');
75
76
77
return $response;
0 commit comments