Skip to content

Instantly share code, notes, and snippets.

@hqingyi
hqingyi / django.conf
Created February 2, 2016 09:08
nginx config
server {
listen 80;
server_name example.me;
access_log /var/log/example/nginx-access.log;
error_log /var/log/example/nginx-error.log;
location /static/ {
alias /home/django/gaokao/static/;
"""
WSGI config for wechat_backend project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/1.9/howto/deployment/wsgi/
"""
import os
@hqingyi
hqingyi / fluentd_forwarder.conf
Created March 24, 2016 03:05
haproxy -> fluentd forwarder -> fluentd server -> elasticsearch -> kibana
<source>
type tail
path /var/log/haproxy.log
pos_file /var/log/td-agent/haproxy.log.pos
tag haproxy.http
format /^(?<syslog_time>.+) (?<source_ip>.+) (?<ps>\w+)\[(?<pid>\d+)\]: (?<c_ip>[\w\.]+):(?<c_port>\d+) \[(?<time>.+)\] (?<f_end>[\w\.-]+) (?<b_end>[\w\.-]+)\/(?<b_server>[^ ]+) (?<tq>[-]?\d+)\/(?<tw>[-]?\d+)\/(?<tc>[-]?\d+)\/(?<tr>[-]?\d+)\/(?<tt>\d+) (?<status_code>\d+) (?<bytes_read>\d+) (?<captured_request_cookie>.+) (?<captured_response_cookie>.+) (?<termination_state>.+) (?<actconn>\d+)\/(?<feconn>\d+)\/(?<beconn>\d+)\/(?<srv_conn>\d+)\/(?<retries>\d+) (?<srv_queue>\d+)\/(?<backend_queue>\d+) \"(?<http_request>.+)\"$/
time_format %d/%b/%Y:%H:%M:%S.%L
</source>
<match *.**>