Advertisement
Guest User

/etc/nginx/conf.d/ssl.conf

a guest
Mar 22nd, 2024
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 1.28 KB | None | 0 0
  1. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_protocols
  2. ssl_protocols ???;
  3. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_ciphers
  4. ssl_ciphers '???';
  5. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_ecdh_curve
  6. ssl_ecdh_curve ???;
  7. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_prefer_server_ciphers
  8. ssl_prefer_server_ciphers on;
  9. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_dhparam
  10. ssl_dhparam ???;
  11. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_session_cache
  12. ssl_session_cache ???;
  13. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_session_timeout
  14. ssl_session_timeout ???;
  15. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_session_tickets
  16. ssl_session_tickets off;
  17. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_stapling
  18. ssl_stapling on;
  19. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_stapling_verify
  20. ssl_stapling_verify on;
  21. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_verify_client
  22. ssl_verify_client on;
  23. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_client_certificate
  24. ssl_client_certificate ???;
  25. # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_trusted_certificate
  26. ssl_trusted_certificate ???;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement