diff --git a/documentation/docs/how-to/fips.md b/documentation/docs/how-to/fips.md new file mode 100644 index 000000000..91e45ceb8 --- /dev/null +++ b/documentation/docs/how-to/fips.md @@ -0,0 +1,15 @@ +# Configure PostgreSQL with FIPS Mode (OpenSSL 3.x) + +You can activate FIPS mode by inheriting the cryptographic behavior from OpenSSL, so if your OpenSSL is FIPS-validated and runs in FIPS mode, PostgreSQL automatically uses it. + +in one of two ways: + +## Install Prerequisites + +```bash +sudo apt install build-essential perl git wget +# or on RHEL / Rocky: +# sudo dnf groupinstall "Development Tools" +# sudo dnf install perl-core wget git +``` +