Not Found in ExternalContext as a Resource

Boa noite ! Estou com um servidor vps, nele tem o jboss wildfly 10.0.0 Final instalado e toda vez que tento logar na área restrita da aplicação aparece esse erro, alguém sabe o que pode ser ? Estou usando JSF,CDI, segue o meu web.xml, faces-config e jboss-web.xml.

web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>cenmc-web</display-name>
  <welcome-file-list>
    <welcome-file>index.xhtml</welcome-file>
  </welcome-file-list>
<servlet>
     <servlet-name>Faces Servlet</servlet-name>
     <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
     <load-on-startup>1</load-on-startup>
 </servlet>
 <servlet-mapping>
     <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
<context-param>
    <param-name>BootsFaces_USETHEME</param-name>
    <param-value>default</param-value>
</context-param>
<context-param>
<param-name>primefaces.THEME</param-name>
<param-value>celeirodeluz</param-value>
</context-param>
<context-param>
    <param-name>javax.faces.PARTIAL_STATE_SAVING</param-name>
    <param-value>false</param-value>
</context-param>
<context-param>
  <param-name>org.jboss.weld.development</param-name>
  <param-value>false</param-value>
</context-param>

<context-param>
  <param-name>net.bootsfaces.get_fontawesome_from_cdn</param-name>
  <param-value>true</param-value>
</context-param>

<session-config>
 <session-timeout>60</session-timeout>  
    <tracking-mode>COOKIE</tracking-mode>
</session-config>
<listener>
    <listener-class>   
        org.jboss.weld.environment.servlet.Listener
    </listener-class>
</listener>

<resource-env-ref>
   <resource-env-ref-name>BeanManager</resource-env-ref-name>
   <resource-env-ref-type>
      javax.enterprise.inject.spi.BeanManager
   </resource-env-ref-type>
</resource-env-ref>

<filter>
    <filter-name>primeFacesFileUploadFilter</filter-name>
    <filter-class>org.primefaces.webapp.filter.FileUploadFilter</filter-class>
</filter>
<filter-mapping>
    <filter-name>primeFacesFileUploadFilter</filter-name>
    <servlet-name>facesServlet</servlet-name>
</filter-mapping>

faces-config.xml:

<?xml version="1.0" encoding="UTF-8"?>
<faces-config
    xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd"
    version="2.2">
<lifecycle>
	<phase-listener>br.org.cenmc.model.autenticacao.Autorizador</phase-listener>
</lifecycle>
<converter>
    <description>Convertendo Enum Papel</description>
    <converter-id>enumPapelConverter</converter-id>
    <converter-class>br.org.cenmc.faces.EnumPapelConverter</converter-class>
</converter>
<converter>
    <description>Convertendo Pessoa</description>
    <converter-id>pessoaConverter</converter-id>
    <converter-class>br.org.cenmc.faces.PessoaConverter</converter-class>
</converter>

</faces-config>

jboss-web.xml:

<jboss-web>
	<context-root>cenmc-web</context-root>
</jboss-web>