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
| openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout server.key -out server.crt |
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
| [user] | |
| email = [email protected] | |
| name = Firstname Lastname | |
| [alias] | |
| # basic | |
| st = status -s | |
| cl = clone | |
| ci = commit | |
| co = checkout |
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
| <?php | |
| // Configure SMTP | |
| $host = 'smtp.yoursmtphost.tld'; | |
| $port = 25; | |
| $username = '[email protected]'; | |
| $password = 'senderPassword'; | |
| $from = '[email protected]'; | |
| $name = 'Sender Name'; |