Commit Graph
3 Commits
Author SHA1 Message Date
Jorge González 601b665ba3 Fix in comment in config/app.php
I know it is a small thing but it's driving me crazy!
2017-08-17 23:47:12 -05:00
Jorge González 82357a563a Remove extra whitespace in config/cache.php 2016-08-23 22:39:29 -05:00
Jorge González 8fc0df14bb Add "sslmode" setting for PostgreSQL connection
The commit https://github.com/laravel/framework/commit/586bffa1d758e09114821b694b5e800cc9bbfb5f added support for sslmode in PostgresConnector.php and sslmode has been around since postgres version 9.1 (2011). 

This change makes it possible to specify sslmode from the config file.

Also serves as documentation to other developers so they don't have to
dive deep into the code to figure out that it's posible to set this option.

The posible values for sslmode are:
    disable, allow, prefer, require, verify-ca, verify-full

The default value is "prefer".

http://www.postgresql.org/docs/9.5/static/libpq-ssl.html#LIBPQ-SSL-PROTECTION
2016-05-12 00:59:15 -05:00