nginx 접근 로그 에 이상 한 암호 가 나타 납 니 다.
1009 단어 HTTP 프로 토 콜
192.168.137.2
node1:/etc/nginx#cat /etc/nginx/nginx.conf
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
events {
worker_connections 1024;
}
# http conf
http {
#include http/common.conf;
#include http/cache.conf;
#include http/resty.conf;
#include http/mime.types;
include http/*.conf;
include http/servers/*.conf;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for" "$request_filename"';
access_log logs/access.log main;
upstream backend1 {
server 192.168.137.3:8090 weight=5;
}
#charset koi8-r;
#access_log logs/host.access.log main;
server{
listen 8090;
server