https.conf.template 355 B

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;