2
보안 인증서를 갱신하면 Nginx를 다시 시작해야합니까?
그래서 다음과 같은 서버 정의로 SSL을 활성화하여 nginx 서버를 설정하고 있습니다. server { listen :80; listen [::]:80; server_name example.org; root /foo/bar; ssl on; ssl_certificate /path/to/public/certificate; ssl_certificate_key /path/to/private/key; ... } 당신은 아이디어를 얻습니다 (오타를 용서하십시오). 어쨌든, 내가 궁금한 것은; 인증서를 갱신하면 nginx를 다시 시작하지 않고도 인증서를 설치할 수 있습니까? 예를 들어 …
33
nginx
ssl
certificates