Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Kubernetes
- Shell
- K8S
- Elk
- 파이썬
- centos 7.5
- JSON
- RHEL
- yum
- GNOME
- Elasticsearch
- log
- rsyslog
- C
- docker
- CentOS
- syslog
- 빅데이터
- GPU
- Audit Log
- Python
- PostgreSQL
- 서울시민카드
- Chrome
- zabbix
- bash
- 크롬
- Linux
- 디렉토리
- audit
Archives
- Today
- Total
Sysops Notepad
[Linux] Centos 웹 서버(Apache,Nginx) X-Forwarded-For Log 설정 본문
728x90
Apache
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy
CustomLog logs/access_log proxy
nginx
--with-http_realip_module 모듈 설치 필요 ( nginx -V )
# vi /etc/nginx/nginx.conf
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
참고:
https://belong2jesus.tistory.com/89
https://meetup.toast.com/posts/163
https://blog.whitelife.co.kr/321
728x90
'업무 > sys' 카테고리의 다른 글
[Network] LLNMR & SSDP 프로토콜이란 ? (0) | 2019.04.19 |
---|---|
[Linux] Centos 7 dnsmasq를 이용한 local dns 구축 (0) | 2019.02.22 |
[Linux] Centos Haproxy Client IP forward 설정 (0) | 2019.02.19 |
[Docker] 호스트와 컨테이너간 파일 복사 (0) | 2019.02.15 |
[Docker] nvidia-docker2 run 사용시 옵션 (0) | 2019.02.15 |
Comments