This commit is contained in:
Sebastian
2024-11-06 12:40:46 +01:00
parent 8ed7698702
commit 375856bd13
2 changed files with 6 additions and 6 deletions

View File

@@ -10,14 +10,14 @@ providers : {
cors: "*", cors: "*",
http: { http: {
enabled: true, enabled: true,
bind_address = "0.0.0.0", bind_address: "0.0.0.0",
hosts = ["*"], hosts: "*",
port: 4444, port: 4444,
} }
ws: { ws: {
enabled: true, enabled: true,
bind_address: "0.0.0.0", bind_address: "0.0.0.0",
hosts = ["*"], hosts: "*",
port: 4445, port: 4445,
} }
} }

View File

@@ -10,15 +10,15 @@ providers : {
cors: "*", cors: "*",
http: { http: {
enabled: true, enabled: true,
bind_address = "0.0.0.0", bind_address: "0.0.0.0",
hosts = ["*"], hosts: "*",
port: 4444, port: 4444,
} }
ws: { ws: {
enabled: false, enabled: false,
bind_address: "0.0.0.0", bind_address: "0.0.0.0",
port: 4445, port: 4445,
hosts = ["*"] host: "*"
} }
} }
} }