Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-activity-platform
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
郝肖肖
2017-11-21 11:44:43 +0800
Commit
4aba43637cfa96198ea2ab2e8d7c9761d6192c0e
1 parent
0908da30
'docker-204'
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
app.js
app.js
View file @
4aba436
...
...
@@ -85,6 +85,11 @@ try {
app
.
use
(
devtools
());
}
// docker验证项目是否正常发布
app
.
use
(
'/node/status.html'
,
(
req
,
res
)
=>
{
return
res
.
status
(
204
).
end
();
});
require
(
'./dispatch'
)(
app
);
app
.
all
(
'*'
,
errorHandler
.
notFound
);
// 404
...
...
Please
register
or
login
to post a comment