nginx secure_link 지시문을 활용한 다운로드 링크 도용 방지 구현

1. nginx 설치 및 모듈 확인 먼저 nginx가 설치되어 있는지, 그리고 필요한 모듈이 포함되어 있는지 확인합니다. secure_link 모듈은 ngx_http_secure_link_module로서 nginx에 기본적으로 포함되어 있습니다. [root@file_server ~]# nginx -V 2>&1 | grep secure_link 출력 결과에 ngx_http_secure_link_module이 포함되어 있으면 준비가 완료된 것입니다. 2. nginx ...

5월 26일 09:26에 게시됨