Back to home page

EIC code displayed by LXR

 
 

    


Warning, /iDDS/main/tools/syslog-ng/http.conf is written in an unsupported language. File is not indexed.

0001 source s_httpd_error {
0002     file("/var/log/idds/httpd_error_log" multi-line-mode(indented));
0003 };
0004 destination d_httpd_error {
0005     pipe(
0006         "/dev/stdout"
0007         template("${ISODATE} IDDS httpd_error ${HOST} ${MESSAGE}\n"));
0008 };
0009 log { source(s_httpd_error); destination(d_httpd_error); };
0010 
0011 source s_httpd_access {
0012     file("/var/log/idds/httpd_access_log" multi-line-mode(indented));
0013 };
0014 destination d_httpd_access {
0015     pipe(
0016         "/dev/stdout"
0017         template("${ISODATE} IDDS httpd_access ${HOST} ${MESSAGE}\n"));
0018 };
0019 log { source(s_httpd_access); destination(d_httpd_access); };
0020 
0021 source s_httpd_ssl {
0022     file("/var/log/idds/httpd_ssl_log" multi-line-mode(indented));
0023 };
0024 destination d_httpd_ssl {
0025     pipe(
0026         "/dev/stdout"
0027         template("${ISODATE} IDDS httpd_ssl ${HOST} ${MESSAGE}\n"));
0028 };
0029 log { source(s_httpd_ssl); destination(d_httpd_ssl); };