Page 181 - Nodejs 교과서 개정2판
P. 181

§ Ӓܿ      )551    җ )551  ੄ ࠺Ү


         ׮਺਷ IUUQ ܳ ੸ਊೠ TFSWFS    KTੑפ׮

          server1-4.js

           const	http2	=	require('http2');
           const	fs	=	require('fs');


           http2.createSecureServer({
           		cert:	fs.readFileSync('도메인	인증서	경로'),
           		key:	fs.readFileSync('도메인	비밀키	경로'),
           		ca:	[
           				fs.readFileSync('상위	인증서	경로'),
           				fs.readFileSync('상위	인증서	경로'),
           		],
           },	(req,	res)	=>	{
           		res.writeHead(200,	{	'Content-Type':	'text/html;	charset=utf-8'	});
           		res.write('<h1>Hello	Node!</h1>');
           		res.end('<p>Hello	Server!</p>');
           })
   176   177   178   179   180   181   182   183   184   185   186