Skip to content

Commit

Permalink
fix: server port
Browse files Browse the repository at this point in the history
  • Loading branch information
yongheng2016 committed Jun 18, 2024
1 parent 834ca0a commit 580aa57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/server/server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const app = new Koa();
const serverConfig = getServerConfig().server;

global.HOSTNAME = serverConfig.http.hostname || 'localhost';
global.PORT = 8003
global.PORT = serverConfig.http.port || 8000;

app.keys = ['kubesphere->_<'];

Expand Down

0 comments on commit 580aa57

Please sign in to comment.