Skip to content

Commit

Permalink
Merge pull request #46 from westsurname/plex-request-ssl
Browse files Browse the repository at this point in the history
minor ssl changes
  • Loading branch information
westsurname authored Jan 1, 2025
2 parents 0f01275 + 7fa65c1 commit 7f5ab8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plex_request_nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ server {
ssl_stapling on;
ssl_stapling_verify on;
#For letsencrypt.org you can get your chain like this: https://esham.io/2016/01/ocsp-stapling
ssl_trusted_certificate ${plex_request_ssl_path}/chain.pem;
# ssl_trusted_certificate ${plex_request_ssl_path}/chain.pem;

#Reuse ssl sessions, avoids unnecessary handshakes
#Turning this on will increase performance, but at the cost of security. Read below before making a choice.
Expand All @@ -42,7 +42,7 @@ server {
ssl_session_tickets off;

#Use: openssl dhparam -out dhparam.pem 2048 - 4096 is better but for overhead reasons 2048 is enough for Plex.
ssl_dhparam ${plex_request_ssl_path}/dhparam.pem;
# ssl_dhparam ${plex_request_ssl_path}/dhparam.pem;
ssl_ecdh_curve secp384r1;
# SSL_ENABLED_END

Expand Down

0 comments on commit 7f5ab8b

Please sign in to comment.