Skip to content

Commit

Permalink
Correctly setup session_id_context in virtual proxy.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Apr 21, 2024
1 parent 3fad7ef commit de33a0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/falcon/environment/proxy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def url
end

# The default SSL session identifier.
def tls_session_id
def ssl_session_id
"falcon"
end

Expand Down Expand Up @@ -79,7 +79,7 @@ def ssl_context
self.host_context(socket, hostname)
end

context.session_id_context = @session_id
context.session_id_context = self.ssl_session_id

context.ssl_version = :TLSv1_2_server

Expand Down

0 comments on commit de33a0b

Please sign in to comment.