is it possible for ejabberd_http to listen on two ports:
  {5281, ejabberd_http, [
                         {request_handlers, [
			 	{["web"], mod_http_fileserver}
			 ]}
			]},
  {5280, ejabberd_http, [
			 http_bind, 
			 http_poll, 
			 web_admin
			]}
I tried above, just timed out. But works.
Actually I want access to , not with additional path like .
If I try the below (no path to mod_http_fileserver), then
 does not work.
  {5280, ejabberd_http, [
			 {request_handlers, [
			 	{[], mod_http_fileserver}
			 ]},
			 http_bind, 
			 http_poll, 
			 web_admin
			]}
Any solution to have and work together?
Thanks

Your first config should
Your first config should work. It works for me. Try setting another port number. Try switching port numbers. Try setting all in 5280.
Your second config won't work, there isn't solution inside ejabberd.