Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-open-source
/
BaseBallSimulator
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
Ubuntu
2021-06-09 12:22:51 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
448d3528ae58ffca1bccf44bde912b12e28838c9
448d3528
1 parent
1be7031e
Update server
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
0 deletions
app.js
app.js
0 → 100644
View file @
448d352
const
express
=
require
(
'express'
);
const
fs
=
require
(
'fs'
);
const
path
=
require
(
'path'
);
const
HTTPS
=
require
(
'https'
);
const
app
=
express
();
const
domain
=
"2020105636.oss-2021.tk"
const
sslport
=
23023
;
app
.
use
(
express
.
static
(
__dirname
));
app
.
get
(
'/'
,
function
(
req
,
res
){
res
.
sendFile
(
__dirname
+
'/main.html'
);
});
app
.
get
(
'/main.html'
,
function
(
req
,
res
){
res
.
sendFile
(
__dirname
+
'/main.html'
);
});
app
.
get
(
'/introduction.html'
,
function
(
req
,
res
){
res
.
sendFile
(
__dirname
+
'/introduction.html'
);
});
app
.
get
(
'/calendar.html'
,
function
(
req
,
res
){
res
.
sendFile
(
__dirname
+
'/calendar.html'
);
});
app
.
get
(
'/simulation.html'
,
function
(
req
,
res
){
res
.
sendFile
(
__dirname
+
'/simulation.html'
);
});
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
);
}
\ No newline at end of file
Please
register
or
login
to post a comment