uawdijnntqw1x1x1
IP : 216.73.216.55
Hostname : srv913213
Kernel : Linux srv913213 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
yapwebtv.com
/
..
/
talentgenesis_admin_backend
/
node_modules
/
pug
/
..
/
aws-ssl-profiles
/
README.md
/
/
# AWS SSL Profiles [**AWS RDS**](https://aws.amazon.com/rds/) **SSL** Certificates Bundles. **Table of Contents** - [Installation](#installation) - [Usage](#usage) - [**mysqljs/mysql**](#mysqljsmysql) - [**MySQL2**](#mysql2) - [**node-postgres**](#node-postgres) - [Custom `ssl` options](#custom-ssl-options) - [License](#license) - [Security](#security) - [Contributing](#contributing) - [Acknowledgements](#acknowledgements) --- ## Installation ```bash npm install --save aws-ssl-profiles ``` --- ## Usage ### [mysqljs/mysql](https://github.com/mysqljs/mysql) ```js const mysql = require('mysql'); const awsCaBundle = require('aws-ssl-profiles'); // mysql connection const connection = mysql.createConnection({ //... ssl: awsCaBundle, }); // mysql connection pool const pool = mysql.createPool({ //... ssl: awsCaBundle, }); ``` ### [MySQL2](https://github.com/sidorares/node-mysql2) ```js const mysql = require('mysql2'); const awsCaBundle = require('aws-ssl-profiles'); // mysql2 connection const connection = mysql.createConnection({ //... ssl: awsCaBundle, }); // mysql2 connection pool const pool = mysql.createPool({ //... ssl: awsCaBundle, }); ``` ### [node-postgres](https://github.com/brianc/node-postgres) ```js const pg = require('pg'); const awsCaBundle = require('aws-ssl-profiles'); // pg connection const client = new pg.Client({ // ... ssl: awsCaBundle, }); // pg connection pool const pool = new pg.Pool({ // ... ssl: awsCaBundle, }); ``` ### Custom `ssl` options Using **AWS SSL Profiles** with custom `ssl` options: ```js { // ... ssl: { ...awsCaBundle, rejectUnauthorized: true, // ... } } ``` ```js { // ... ssl: { ca: awsCaBundle.ca, rejectUnauthorized: true, // ... } } ``` ### Custom bundles ```js const { proxyBundle } = require('aws-ssl-profiles'); { // ... ssl: proxyBundle, } ``` --- ## License **AWS SSL Profiles** is under the [**MIT License**](./LICENSE). --- ## Security Please check the [**SECURITY.md**](./SECURITY.md). --- ## Contributing Please check the [**CONTRIBUTING.md**](./CONTRIBUTING.md) for instructions. --- ## Acknowledgements [**Contributors**](https://github.com/mysqljs/aws-ssl-profiles/graphs/contributors).
/var/www/yapwebtv.com/../talentgenesis_admin_backend/node_modules/pug/../aws-ssl-profiles/README.md