If you like DNray Forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...

 

Nginx and OpenSSL Upgrades for HTTP/2 Compatibility

Started by fedotofAw, Oct 20, 2024, 12:09 AM

Previous topic - Next topic

fedotofAwTopic starter

Hey folks, I'm in the process of configuring an HTTP/2 integration on my site, but I'm currently stuck with an antiquated OpenSSL version 1.0.1e-fips from 11 Feb 2013. Fortunately, I stumbled upon a workaround for CentOS 7 that doesn't require a rebuild of nginx. The solution involves updating from the brouken repository.

To implement this, I'll need to execute the following commands:

yum -y install yum-utils
yum-config-manager --add-repo https://brouken.com/brouken.repo
yum update nginx

My primary concern is whether the nginx configuration will remain intact post-update. Will I need to reconfigure everything from scratch, or will the updated version seamlessly integrate with my existing setup?
  •  


TonyMontac

Typically, when you update Nginx via yum, your configuration files located in /etc/nginx/ should remain untouched. The package manager usually only replaces binaries and dependencies, preserving your settings. However, it's always prudent to back up your configuration files before proceeding, just in case the update introduces unexpected changes or conflicts.

Relying on an outdated OpenSSL version is a risky move. If you're still on 1.0.1e-fips, you're exposing your site to vulnerabilities. The workaround you're considering may seem convenient, but it's a temporary patch rather than a robust solution. If you truly care about security and performance, you should aim for a full upgrade to a supported OpenSSL version, which might require a more comprehensive approach than just updating Nginx.
  •  

ephotobay

Looks like you've already got a module in place, but something's not quite firing on all cylinders. Can you walk me through what's not working as expected? Did you successfully register the HTTP/2 protocol for your sites in the configuration files? And, just to confirm, do you have HTTPS enabled for the site in question? Perhaps there's a misconfiguration or a mismatch between your SSL/TLS settings and the HTTP/2 module. Let's drill down and get to the root of the issue.
  •  

webxpertindia

Considering a potential paradigm shift, one might ponder the feasibility of migrating to CentOS Stream, thereby leveraging its cutting-edge features and streamlined package management.
Alternatively, AlmaLinux 8 or 9 could be viable options, offering a robust and RHEL-compatible ecosystem. This strategic maneuver could potentially future-proof one's infrastructure, especially for those donning multiple hats.
  •  


If you like DNray forum, you can support it by - BTC: bc1qppjcl3c2cyjazy6lepmrv3fh6ke9mxs7zpfky0 , TRC20 and more...