• 구름많음동두천 22.4℃
  • 구름많음강릉 23.7℃
  • 맑음서울 24.0℃
  • 구름많음대전 24.7℃
  • 구름많음대구 23.5℃
  • 구름조금울산 24.7℃
  • 구름많음광주 25.8℃
  • 구름조금부산 27.9℃
  • 구름조금고창 26.8℃
  • 구름조금제주 27.7℃
  • 구름조금강화 23.1℃
  • 구름많음보은 23.4℃
  • 구름많음금산 24.8℃
  • 구름많음강진군 25.9℃
  • 구름많음경주시 24.7℃
  • 맑음거제 25.1℃
기상청 제공

nginx 환경변수 출력

nginx 환경변수 출력하기 위한 설정들
To check nginx environment variables
How can I check the nginx environment variable?

nginx 환경변수 출력하기 위한 설정들
To check nginx environment variables
How  can I check the nginx environment variable?

 

아래 설정으로 request_uri, protocol 을 확인할 수 있다.

 

server {

  listen 80

  ..

  ..

 

 

  location ~ .(php|html|htm|php3)$ {

    proxy_pass  http://apache;

    ..

    proxy_set_header X-Original-Request $request_uri;

    proxy_set_header X-Forwarded-Proto $scheme;

  }

 

}

 

 

변수명

request_uri : HTTP_X_ORIGINAL_REQUEST

protocol : HTTP_X_FORWARDED_PROTO

 

참조사이트

https://www.opentutorials.org/module/384/4508

https://serverfault.com/questions/515957/how-to-have-nginx-forward-the-http-x-forwarded-proto-header

https://www.digitalocean.com/community/tutorials/how-to-set-up-nginx-load-balancing-with-ssl-termination

https://stackoverflow.com/questions/28472692/serverrequest-uri-with-nginx-proxy-server-get-rewritten-page-urls