Skip to content

Commit 12330f4

Browse files
committed
chore: update default port to 6420 (#2660)
<!-- Please make sure there is an issue that this PR is correlated to. --> ## Changes <!-- If there are frontend changes, please include screenshots. -->
1 parent 1ad2a2a commit 12330f4

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

docker/dev-full/docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ services:
1717
stop_grace_period: 0s
1818
ports:
1919
# API
20-
- "8080:8080"
20+
- "6420:6420"
2121
# API edge
22-
- "8081:8081"
22+
- "6421:6421"
2323
# Pegboard
24-
- "8082:8082"
24+
- "6422:6422"
2525
depends_on:
2626
cockroachdb:
2727
condition: service_healthy
@@ -66,7 +66,7 @@ services:
6666
stop_grace_period: 0s
6767
ports:
6868
# API
69-
- "8083:8080"
69+
- "6423:6423"
7070
depends_on:
7171
rivet-server:
7272
condition: service_healthy

docker/dev-full/rivet-client/config.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"cluster": {
1919
// This is safe to hardcode
2020
"client_id": "fc67e54e-5d6a-4726-ab23-77b0e54f068f",
21-
"api_endpoint": "http://rivet-server:8080",
21+
"api_endpoint": "http://rivet-server:6420",
2222
"ws_addresses": {
2323
"static": [
24-
"rivet-edge-server:8082"
24+
"rivet-edge-server:6422"
2525
]
2626
}
2727
},

packages/common/config/src/config/server/rivet/mod.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub mod default_dev_cluster {
2525

2626
// In dev, there are no servers to pull the addresses from. We need to have a fallback address.
2727
pub const DEV_EDGE_API_FALLBACK_ADDR_LAN_HOST: &str = "rivet-edge-server";
28-
pub const DEV_EDGE_API_FALLBACK_ADDR_LAN_PORT: u16 = 8080;
28+
pub const DEV_EDGE_API_FALLBACK_ADDR_LAN_PORT: u16 = 6420;
2929
}
3030

3131
pub mod default_hosts {
@@ -43,13 +43,13 @@ pub mod default_hosts {
4343
}
4444

4545
pub(crate) mod default_ports {
46-
pub const API_PUBLIC: u16 = 8080;
47-
pub const API_EDGE: u16 = 8081;
48-
pub const PEGBOARD: u16 = 8082;
49-
pub const TUNNEL: u16 = 8003;
46+
pub const API_PUBLIC: u16 = 6420;
47+
pub const API_EDGE: u16 = 6421;
48+
pub const PEGBOARD: u16 = 6422;
49+
pub const TUNNEL: u16 = 6423;
5050

51-
pub const HEALTH: u16 = 8090;
52-
pub const METRICS: u16 = 8091;
51+
pub const HEALTH: u16 = 6430;
52+
pub const METRICS: u16 = 6431;
5353
}
5454

5555
#[derive(Debug, Serialize, Deserialize, Clone, JsonSchema)]

0 commit comments

Comments
 (0)