Encrypted-Session
Encrypted-Session 동적 모듈은 MAC을 사용하는 AES-256을 기반으로 NGINX 변수에 대한 암호화 및 암호 해독 지원을 제공합니다. 일반적으로 Set-Misc 동적 모듈 및 NGINX rewrite 모듈과 함께 사용됩니다.
목차
1. 설치 지침
2. 추가 정보
1. 설치 지침
1. Encrypted-Session 모듈 설치
Amazon Linux, CentOS, Oracle Linux 및 RHEL의 경우:
$ yum install nginx-plus-module-encrypted-session
Debian 및 Ubuntu의 경우:
$ apt-get install nginx-plus-module-encrypted-session
SLES의 경우:
$ zypper install nginx-plus-module-encrypted-session
Alpine의 경우:
$ apk add nginx-plus-module-encrypted-session
2. NGINX Plus 구성 파일인 nginx.conf의 최상위(“main”) context에 load_module 지시문을 넣습니다.
load_module modules/ndk_http_module.so;
load_module modules/ngx_http_encrypted_session_module.so;
3. 모듈에서 요구하는 대로 추가 구성을 수행합니다.
4. 모듈을 활성화하려면 NGINX Plus를 다시 로드하십시오.
$ nginx -t && nginx -s reload