Skip to content

Tag: nginx

How do I get OpenJDK 16 to talk with an SSL enabled nginx server?

I’m running a spring boot application that needs to make an https call to an nginx server. The application is running on CentOS 7 with OpenJDK 16. Following this more or less, I gathered a list of all the ciphers available to the JVM: In nginx, I have the following: I’ve tried every one of the cip…

Header sent from Java changes it name on PHP side

I am sending X-Auth-HMAC header from Java using HttpClient to Nginx + PHP-FPM combo: But on PHP side in $_SERVER variable among all headers i get: How could X-Auth-HMAC become HTTP_X_AUTH_HMAC ? Answer PHP formats HTTP headers in the $_SERVER variable according to RFC 3875 (the CGI 1.1 spec). Specifically sec…