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
| module.exports = { | |
| foo: 'bar', | |
| num: 22, | |
| items: [ | |
| 'item1', 'item2', 'item3' | |
| ], | |
| }; |
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 s_client -connect 127.0.0.1:465 -starttls smtp | |
| CONNECTED(00000003) | |
| depth=0 CN = zhillb.xyz | |
| verify error:num=20:unable to get local issuer certificate | |
| verify return:1 | |
| depth=0 CN = zhillb.xyz | |
| verify error:num=21:unable to verify the first certificate | |
| verify return:1 | |
| --- | |
| Certificate chain |
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 s_client -connect 127.0.0.1:465 | |
| CONNECTED(00000003) | |
| 140640946747032:error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol:s23_clnt.c:794: | |
| --- | |
| no peer certificate available | |
| --- | |
| No client certificate CA names sent | |
| --- | |
| SSL handshake has read 7 bytes and written 305 bytes | |
| --- |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>hello phaser!</title> | |
| <script src="./node_modules/phaser-ce/build/phaser.min.js"></script> | |
| </head> | |
| <body> | |
| <script type="text/javascript"> |
NewerOlder