Skip to content

Commit a9924a0

Browse files
committed
change port to 8080
1 parent 5839f7d commit a9924a0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ RUN npm prune && npm install
1111

1212
CMD ["node", "./bin/www"]
1313

14-
EXPOSE 3000
14+
EXPOSE 8080

app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var gitlabRoute = require('./routes/gitlab');
3333
gitlabRoute.init(gitlabLdapGroupSync);
3434

3535
var app = express();
36-
app.set('port', config.port || process.env.PORT || 3000);
36+
app.set('port', config.port || process.env.PORT || 8080);
3737

3838
app.use(logger('dev'));
3939

config.sample.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"port": 3000,
2+
"port": 8080,
33
"syncInterval": "10m",
44
"gitlab": {
55
"api": "https://repo.mwaysolutions.com/api/v4",

config.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "integer",
66
"minimum": 1,
77
"maximum": 65535,
8-
"default": 3000
8+
"default": 8080
99
},
1010
"syncInterval": {
1111
"type": "string",

0 commit comments

Comments
 (0)