우노
[Nginx] 변수 사용 방법 본문
예제 코드) Nginx 변수 선언 및 호출
server {
listen 3002;
root /opt/nginx/html;
resolver 168.126.63.1 valid=1m ipv6=off;
# 변수 선언
set $test 'hello';
location / {
proxy_pass http://localhost:3000/;
# 변수 호출
proxy_set_header customheader $test;
}
}
참고
'Web_App > Nginx' 카테고리의 다른 글
[Nginx] proxy_pass 시 cookie 전달 (0) | 2023.03.30 |
---|---|
[Nginx] proxy_pass 시 custom header 추가 (0) | 2023.03.28 |
[Nginx] Json 로그 포맷 설정 (0) | 2023.03.11 |
[Nginx] resolver란? (0) | 2023.02.23 |
[Nginx] 정규표현식 (1) | 2023.02.17 |
Comments