Compose files, instructions and extras for using my automatic proxy containers
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

123456789101112131415161718192021222324252627
  1. # Values here are based on Mozilla's "Modern compatibility" configuration.
  2. # https://wiki.mozilla.org/Security/Server_Side_TLS#Modern_compatibility
  3. #
  4. # NB: This configuration severely limits older browsers and configurations.
  5. # Specifically, the following are the oldest supported versions:
  6. #
  7. # * Firefox 27
  8. # * Chrome 30
  9. # * IE 11 on Windows 7
  10. # * Edge
  11. # * Opera 17
  12. # * Safari 9
  13. # * Android 5.0
  14. # * Java 8
  15. #
  16. # Older browsers or platforms won't be able to negotiate a connection.
  17. ssl_protocols TLSv1.2;
  18. ssl_ciphers "ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256";
  19. ssl_prefer_server_ciphers on;
  20. ssl_session_timeout 1d;
  21. ssl_session_cache shared:SSL:50m;
  22. ssl_session_tickets off;
  23. ssl_stapling on;
  24. ssl_stapling_verify on;
  25. resolver 8.8.8.8;