Toggle navigation
Toggle navigation
This project
Loading...
Sign in
은승우
/
LINEBOT
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
은승우
2019-12-04 13:44:52 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e15b4145ea9a4a0be3aa9a4f3bae74f23a1854ad
e15b4145
1 parent
ccc1bf81
Update app.js
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
app.js
app.js
View file @
e15b414
...
...
@@ -5,7 +5,7 @@ var request = require('request');
var
https
=
require
(
'https'
);
var
http
=
require
(
'http'
);
/*
var
fs
=
require
(
"fs"
);
var
httpsOptions
=
{
...
...
@@ -14,8 +14,8 @@ var httpsOptions = {
};
http
.
createServer
(
app
).
listen
(
80
);
https.createServer(httpsOptions, app).listen(443);
*/
https
.
createServer
(
httpsOptions
,
app
).
listen
(
443
);
/*
const lex= require('greenlock-express').create({
version: 'draft-11', // 버전2
store: require('greenlock-store-fs'),
...
...
@@ -38,7 +38,7 @@ https.createServer(lex.httpsOptions, lex.middleware(app)).listen((process.env.SS
});
http.createServer(lex.middleware(require('redirect-https')())).listen(process.env.PORT || 80,()=>{
console.log("server on 80");
});
});
*/
//papago api
...
...
Please
register
or
login
to post a comment