This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# https://serversforhackers.com/self-signed-ssl-certificates | |
# http://stackoverflow.com/questions/7580508/getting-chrome-to-accept-self-signed-localhost-certificate | |
# Specify where we will install | |
# the xip.io certificate | |
SSL_DIR="/home/tomfun/prj/ssl/o.o" | |
SSL_FILE="o.o" | |
# Set the wildcarded domain | |
# we want to use | |
DOMAIN="*.o.o" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//StreamBuffer.php (260..261) | |
//vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/StreamBuffer.php | |
//_establishSocketConnection | |
$options['ssl']['verify_peer'] = FALSE; | |
$options['ssl']['verify_peer_name'] = FALSE; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$this->em->getConnection() | |
->getConfiguration() | |
->setSQLLogger(new \Doctrine\DBAL\Logging\EchoSQLLogger()) | |
; |
NewerOlder