Toggle navigation
Toggle navigation
This project
Loading...
Sign in
오명준
/
probability_simulator
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
오명준
2021-12-09 13:37:57 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f74ae005f782e997651768aa8ef5ae5c08715f10
f74ae005
1 parent
b389d2a9
Correct server executing file
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
app.js
app.js
View file @
f74ae00
const
express
=
require
(
'express'
);
const
fs
=
require
(
'fs'
);
const
path
=
require
(
'path'
);
const
HTTPS
=
require
(
'https'
);
const
app
=
express
();
const
domain
=
"www.probability.simulator.mooo.com"
const
sslport
=
23023
;
app
.
get
(
'/'
,
function
(
req
,
res
)
{
fs
.
readFile
(
"list.html"
,
function
(
error
,
data
){
res
.
writeHead
(
200
,
{
"Content-Type"
:
"text/html"
});
res
.
end
(
data
);
});
});
try
{
const
option
=
{
ca
:
fs
.
readFileSync
(
'/etc/letsencrypt/live/'
+
domain
+
'/fullchain.pem'
),
key
:
fs
.
readFileSync
(
path
.
resolve
(
process
.
cwd
(),
'/etc/letsencrypt/live/'
+
domain
+
'/privkey.pem'
),
'utf8'
).
toString
(),
cert
:
fs
.
readFileSync
(
path
.
resolve
(
process
.
cwd
(),
'/etc/letsencrypt/live/'
+
domain
+
'/cert.pem'
),
'utf8'
).
toString
(),
};
HTTPS
.
createServer
(
option
,
app
).
listen
(
sslport
,
()
=>
{
console
.
log
(
`[HTTPS] Server is started on port
${
sslport
}
`
);
});
}
catch
(
error
)
{
console
.
log
(
'[HTTPS] HTTPS 오류가 발생하였습니다. HTTPS 서버는 실행되지 않습니다.'
);
console
.
log
(
error
);
}
...
...
Please
register
or
login
to post a comment