Post go-live of project, some of the users were facing below issue when they were trying to access the application.
Bad Request
Your browser sent a request that this server could not understand.Size of a request header field exceeds server limit.
Authorization
Reason : Request Header size was big for some profiles which server was refusingFix: To fix we have make modification in httpd.confLimitRequestFieldSize 16384
we need to add this parameter under virtual host
<VirtualHost *:80> ServerName xxxxxxxxx LimitRequestFieldSize 16384 RequestHeader set WL-Proxy-SSL true RewriteEngine on
Use below links for more helphttps://stackoverflow.com/questions/10309751/bad-request-your-browser-sent-a-request-that-this-server-could-not-understandhttps://serverfault.com/questions/413984/increase-the-value-of-limitrequestfieldsize-in-apache
No comments:
Post a Comment