문서의 선택한 두 판 사이의 차이를 보여줍니다.
| 양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
|
nginx:log [2020/08/26 09:35] kwon37xi |
nginx:log [2020/08/26 15:48] (현재) kwon37xi [특정 GET query parameter masking] |
||
|---|---|---|---|
| 줄 18: | 줄 18: | ||
| ===== 특정 GET query parameter masking ===== | ===== 특정 GET query parameter masking ===== | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||
| < | < | ||
| + | log_format filter ' | ||
| + | '" | ||
| + | |||
| + | # Other Configs | ||
| + | |||
| + | server { | ||
| + | #Server Configs | ||
| + | location / { # location 을 구체적으로 명시하는게 나을 듯 보임. | ||
| + | set $temp $request; | ||
| + | if ($temp ~ (.*)password=[^& | ||
| + | set $temp $1password=****$2; | ||
| + | } | ||
| + | |||
| + | access_log / | ||
| + | } | ||
| + | } | ||
| </ | </ | ||