Sophie

Sophie

distrib > Mandriva > mes5 > x86_64 > by-pkgid > a78dd643125bb672621ab7ec2ac86ef5 > files > 1

apache-mod_log_sql-1.101-6mdv2009.0.src.rpm

<IfDefine HAVE_LOG_SQL>
    <IfModule !mod_log_sql.c>
	LoadModule log_sql_module	extramodules/mod_log_sql.so
    </IfModule>
</IfDefine>

<IfDefine HAVE_LOG_SQL_MYSQL>
    <IfModule !mod_log_sql_mysql.c>
	LoadModule log_sql_mysql_module	extramodules/mod_log_sql_mysql.so
    </IfModule>
</IfDefine>

<IfModule mod_log_sql_mysql.c>

    # Whether to announce that mod_log_sql is loaded in the server header
    LogSQLAnnounce On

    # The database connection URI in the form "driver://user:password@hostname:port/database"
    #LogSQLLoginInfo mysql://mysql_user_name:mysql_password@hostname:mysql_port/mysql_database_name

    # First argument is the DB parameter, second is the value to assign
    #LogSQLDBParam socketfile /var/lib/mysql/mysql.sock
    #LogSQLDBParam port 3306

    # Forces logging to preserve file and bypasses database
    #LogSQLForcePreserve

    # Completely disables use of the preserve file
    #LogSQLDisablePreserve

    # Name of the file to use for data preservation during database downtime
    #LogSQLPreserveFile

    # Turn on module's capability to create its SQL tables on the fly
    LogSQLCreateTables On

    # Activates option(s) useful for ISPs performing mass virutal hosting
    LogSQLMassVirtualHosting Off

    # The database table that holds the transfer log
    #LogSQLTransferLogTable

    # The database table that holds the notes
    #LogSQLNotesLogTable

    # The database table that holds the outbound headers
    #LogSQLHeadersOutLogTable

    # The database table that holds the inbound headers
    #LogSQLHeadersInLogTable

    # The database table that holds the cookie info
    #LogSQLCookieLogTable

    # Instruct the module what information to log to the database transfer log
    LogSQLTransferLogFormat AbHhmRSsTUuv

    # Machine ID that the module will log, useful in web clusters to differentiate machines
    #LogSQLMachineID

    # List of URIs to accept for logging. Accesses that don't match will not be logged
    LogSQLRequestAccept *.php *.html *.gif *.jpg *.png

    # List of URIs to ignore. Accesses that match will not be logged to database
    LogSQLRequestIgnore root.exe cmd.exe default.ida

    # List of remote hosts to ignore. Accesses that match will not be logged to database
    #LogSQLRemhostIgnore

    # The single cookie that you want logged in the access_log when using the 'c' config directive
    #LogSQLWhichCookie

    # Notes that you would like to log in a separate table
    #LogSQLWhichNotes

    # Outbound headers that you would like to log in a separate table
    #LogSQLWhichHeadersOut

    # Inbound headers that you would like to log in a separate table
    #LogSQLWhichHeadersIn

    # The cookie(s) that you would like to log in a separate table
    #LogSQLWhichCookies

</IfModule>