選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

https.conf.template 356B

123456789
  1. # Please do not directly edit this file. Instead, modify the .env variables related to NGINX configuration.
  2. listen ${NGINX_SSL_PORT} ssl;
  3. ssl_certificate ${SSL_CERTIFICATE_PATH};
  4. ssl_certificate_key ${SSL_CERTIFICATE_KEY_PATH};
  5. ssl_protocols ${NGINX_SSL_PROTOCOLS};
  6. ssl_prefer_server_ciphers on;
  7. ssl_session_cache shared:SSL:10m;
  8. ssl_session_timeout 10m;