• Stars
    star
    132
  • Rank 265,764 (Top 6 %)
  • Language
    Perl
  • Created over 13 years ago
  • Updated about 10 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

add the full syslog feature to Nginx

#DESCRIPTION

This is a syslog patch for Nginx-0.8.54+. With this patch, you can send your access or error log to specific syslog facility and priority.

Only access log support is available for nginx 1.5.6. Feel free to contribute an error_log patch.

Original patch by yaoweibin access log support by SplitIce (for http://www.x4b.net/)

#COMPATIBLE

syslog_1.2.0.patch could work with nginx-1.2.0 - nginx-1.2.6 and nginx-1.3.0 - nginx-1.3.9
syslog_1.2.7.patch could work with nginx-1.2.7+.
syslog_1.3.11.patch could work with nginx-1.3.9
syslog_1.3.14.patch could work with nginx-1.3.14+
syslog_1.4.0.patch could work with nginx-1.4.0+
syslog_1.5.6.patch could work with nginx-1.5.0+
syslog_1.7.0.patch could work with nginx-1.7.0+

#INSTALLATION

#download the latest code
git clone https://github.com/splitice/nginx_syslog_patch

#download the source code of Nginx
wget http://nginx.org/download/nginx-0.8.54.tar.gz
tar zxvf nginx-0.8.54
cd nginx-0.8.54

#patch to your Nginx source file.
patch -p1 < /path/to/this/directory/syslog_0.8.54.patch

#add the module
./configure --add-module=/path/to/nginx_syslog_patch

#EXAMPLE

worker_processes  1;

syslog local6 nginx;

events {
        worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] $request '
        '"$status" $body_bytes_sent "$http_referer" '
        '"$http_user_agent" "$http_x_forwarded_for"';

    server {
        listen       80;
        server_name  localhost;

        #send the log to syslog and file.
        access_log  syslog:notice|logs/host1.access.log main;
		
		# pre 1.5.x
        error_log syslog:notice|logs/host1.error.log;

        location / {
            root   html;
            index  index.html index.htm;
        }
    }

    server {
        listen       80;
        server_name  www.example.com;

        access_log  syslog:warn|logs/host2.access.log main;
        error_log syslog:warn|logs/host2.error.log;

        location / {
            root   html;
            index  index.html index.htm;
        }
    }

    server {
        listen       80;
        server_name  www.test.com;

        #send the log just to syslog.
        access_log  syslog:error main;
        error_log syslog:error;

        location / {
            root   html;
            index  index.html index.htm;
        }
    }
}

#DIRECTIVES

##SYSLOG Sytax: syslog auth|authpriv|cron|daemon|ftp|kern|local0-7|lpr|mail|news|syslog|user|uucp [program_name]

Default: none

Context: main

Enable the syslog and set its facility. The default program name is nginx.

ERROR_LOG (pre 1.5.x)

Syntax: error_log [syslog[:emerg|alert|crit|error|warn|notice|info|debug]]['|'file] [ debug | info | notice | warn | error | crit ]

Default: ${prefix}/logs/error.log

Context: main, http, server, location

Enable the error_log with the syslog and set its priority. The default priority is error. The error log can be sent to syslog, file or both.

Note: if you set the error_log directive in the main block, the syslog is switched on by default.

##ACCESS_LOG Syntax: access_log off|[syslog[:emerg|alert|crit|error|warn|notice|info|debug]]['|'path] [format [buffer=size]]]

Default: access_log logs/access.log combined

Context: http, server, location

Enable the access_log with the syslog and set its priority. The default priority is notice. The access log can be sent to syslog, file or both.

#CONTACT

Reporting a bug Questions/patches may be directed to Weibin Yao, [email protected].

#COPYRIGHT & LICENSE

This patch is licensed under the BSD license.

Copyright (C) 2011 by Weibin Yao [email protected].

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

More Repositories

1

nginx_tcp_proxy_module

add the feature of tcp proxy with nginx, with health check and status monitor
C
1,642
star
2

ngx_http_substitutions_filter_module

a filter module which can do both regular expression and fixed string substitutions for nginx
Perl
601
star
3

nginx_ajp_module

support AJP protocol proxy with Nginx
Perl
244
star
4

nginx_limit_speed_module

limit the total speed from the specific user
C
107
star
5

nginx_limit_access_module

support to deny specific variable with HTTP POST interface
Perl
70
star
6

nginx_http_recaptcha_module

support google's reCAPTCHA with Nginx
Perl
53
star
7

nginx_http_oauth_module

support oauth client with nginx
Perl
32
star
8

captcha_server

captcha_server
Java
26
star
9

nginx_secure_cookie_module

add the secure cookie
Perl
23
star
10

nginx_cross_origin_module

add the support for cross-origin resource sharing protocol: http://www.w3.org/TR/cors/
Perl
21
star
11

aho_corasick_state_machine

Use Aho-Corasick state machine to string matching(C language, under BSD License)
C
19
star
12

nginx_upstream_keepalive_patch

Patch for upstream HTTP protocol keepalive
Perl
17
star
13

nginx-sticky-module

clone from http://code.google.com/p/nginx-sticky-module/
C
15
star
14

mod_tcache

Memory cache module for Nginx
C
13
star
15

nginx_session_store_module

add the session support for Nginx
C
8
star
16

parse_domain

parse the domain and get the Top Level Domain
C
6
star
17

nginx_http_redis_module

fork from nginx_http_redis_module_0.3.4
C
5
star
18

squid_gzip

add the gzip feature to squid-2.7 on the fly
Perl
4
star
19

chinese_text_filter

Process the Chinese text stuff
Ruby
3
star
20

mguesser

language detection, fork from http://www.mnogosearch.org/guesser/
C
3
star
21

regex_test

test the performance and feature with some regex librarys
2
star
22

libcharguess

clone from http://sourceforge.net/projects/libcharguess/
C
2
star
23

zh_conversion

map between traditional and simplified words
Ruby
2
star
24

nginx_if_contain_patch

This a patch for our private use.
2
star
25

super_http_benchmark_test

a more stress and simple HTTP test tool
C
1
star
26

ruby_example

private ruby experimental examples
C
1
star
27

yaoweibin.ruhoh.com

a blog
Ruby
1
star
28

test

test
Vim Script
1
star
29

yaoweibin_html5_slides

yaoweibin html5 slides (steal from http://code.google.com/p/html5slides/)
JavaScript
1
star
30

yaoweibin.github.com

My homepage
1
star
31

statistic_game

statistic_game
Ruby
1
star