User: chirino 
  Date: 01/06/24 14:23:08

  Added:       src/etc/conf/default auth.conf jboss-auto.jcml
                        log4j.properties
  Log:
  
  
  Revision  Changes    Path
  1.1                  jbossmq/src/etc/conf/default/auth.conf
  
  Index: auth.conf
  ===================================================================
  // Put login modules providing authentication and realm mappings
  // for security domains.
  
  
  simple {
      // Very simple login module: 
      // any user name is accepted.
      // password should either coincide with user name or be null, 
      // all users have role "guest", 
      // users with non-null password also have role "user"
      org.jboss.security.auth.spi.SimpleServerLoginModule required;
  };
  
  // Used by clients within the application server VM such as
  // mbeans and servlets that access EJBs.
  client-login {
      org.jboss.security.ClientLoginModule required;
  };
  
  // The default server login module
  other {
      // A simple server login module, which can be used when the number 
      // of users is relatively small. It uses two properties files:
      //   users.properties, which holds users (key) and their password (value).
      //   roles.properties, which holds users (key) and a comma-separated list of 
their roles (value).
      org.jboss.security.auth.spi.UsersRolesLoginModule required;
  
  };
   
  
  
  
  1.1                  jbossmq/src/etc/conf/default/jboss-auto.jcml
  
  Index: jboss-auto.jcml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <server>
  </server>
  
  
  
  1.1                  jbossmq/src/etc/conf/default/log4j.properties
  
  Index: log4j.properties
  ===================================================================
  # The standard log4j properties for the default
  # JBoss server config. This creates a server.log appender
  # and a console appender.
  
  # Set the JBossCategoryFactory as the default CategoryFactory
  log4j.categoryFactory=org.jboss.logging.log4j.JBossCategory$JBossCategoryFactory
  
  log4j.rootCategory=DEBUG, Default, Console
  
  ### The server.log file appender
  log4j.appender.Default=org.apache.log4j.FileAppender
  log4j.appender.Default.File=../log/server.log
  log4j.appender.Default.layout=org.apache.log4j.PatternLayout
  # Format is [Category] msg\n
  log4j.appender.Default.layout.ConversionPattern=[%c{1}] %m%n
  # Truncate if it aleady exists.
  log4j.appender.Default.Append=false
  
  ### The console appender
  log4j.appender.Console=org.jboss.logging.log4j.ConsoleAppender
  log4j.appender.Console.Threshold=INFO
  log4j.appender.Console.layout=org.apache.log4j.PatternLayout
  log4j.appender.Console.layout.ConversionPattern=[%c{1}] %m%n
  
  # Example of increasing the priority threshold for the DefaultDS category
  #log4j.category.DefaultDS=FATAL
  # Example of only showing INFO msgs for any categories under org.jboss.util
  #log4j.category.org.jboss.util=INFO
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to