nginx 변수 값 보기
location / {
echo $host; #
echo $remote_addr;
echo $remote_user;
echo $time_local;
echo $request;
echo $status;
echo $body_bytes_sent;
echo $http_referer;
echo $http_user_agent;
echo $http_x_forwarded_for;
echo $proxy_add_x_forwarded_for;
}
echo $host; #
echo $remote_addr; # ip ip
echo $remote_user; #
echo $time_local; #
echo $request; #
echo $status; #
echo $body_bytes_sent; #
echo $http_referer; #referer
echo $http_user_agent; #
echo $http_x_forwarded_for; # , ip
echo $proxy_add_x_forwarded_for; # ip ip 。 ip
nginx
Ngx_http_core_module , apache 。
title , $http_user_agent,$http_cookie 。
$proxy_add_x_forwarded_for # ip ip 。 ip
$http_x_forwarded_for # ip
$remote_addr ip, 。 ip
$document_root # root
$args
$content_length “Content_Length” 。
$content_type ”Content_Type”
$document_root root
$document_uri $uri
$uri request URI, , index
$host “Host” request server ( Host ) , , ip ip
$limit_rate
$request_method request method, “GET” “POST”
$remote_port port
$remote_user , ngx_http_auth_basic_module
$request_filename , root alias URI request ,
$request_body_file
$request_uri URI
$query_string $args
$sheeme http (http,https)
Rewrite ^(.+)$ $sheme://example.com$; Redirect;
$server_protocol request , “HTTP/ “HTTP/
$server_addr request server ip, 。 , listen ip, bind 。 ip
$server_name , , ip :_
$server_port
다음으로 전송:https://www.cnblogs.com/hanxiaohui/p/8487934.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.