우노
[Nginx] proxy_pass 시 cookie 전달 본문
Nginx proxy_pass 시 cookie 전달
location / {
proxy_pass http://backend;
add_header Set-Cookie "my_cookie=my_value; Path=/; HttpOnly; Secure";
}
- HttpOnly
- 브라우저에서 해당 쿠키로 접근할 수 없습니다.
- Secure
- HTTPS가 아닌 통신에서는 쿠키를 전송하지 않습니다.
'Web_App > Nginx' 카테고리의 다른 글
[Nginx] proxy_pass 시 custom header 추가 (0) | 2023.03.28 |
---|---|
[Nginx] 변수 사용 방법 (0) | 2023.03.27 |
[Nginx] Json 로그 포맷 설정 (0) | 2023.03.11 |
[Nginx] resolver란? (0) | 2023.02.23 |
[Nginx] 정규표현식 (1) | 2023.02.17 |
Comments