Commit d797d967 authored by nanahira's avatar nanahira

add NO_CONNECT_COUNT_LIMIT as default

parent 7792de02
...@@ -19,7 +19,7 @@ sslKey: "" ...@@ -19,7 +19,7 @@ sslKey: ""
trustedProxies: trustedProxies:
- 127.0.0.0/8 - 127.0.0.0/8
- ::1/128 - ::1/128
noConnectCountLimit: "" noConnectCountLimit: 0
ygoproVersion: "0x1362" ygoproVersion: "0x1362"
altVersions: altVersions:
- 2330 - 2330
......
...@@ -50,7 +50,7 @@ export const defaultConfig = { ...@@ -50,7 +50,7 @@ export const defaultConfig = {
TRUSTED_PROXIES: '127.0.0.0/8,::1/128', TRUSTED_PROXIES: '127.0.0.0/8,::1/128',
// Disable per-IP connection count limit. // Disable per-IP connection count limit.
// Boolean parse rule (default false): ''/'0'/'false'/'null' => false, otherwise true. // Boolean parse rule (default false): ''/'0'/'false'/'null' => false, otherwise true.
NO_CONNECT_COUNT_LIMIT: '', NO_CONNECT_COUNT_LIMIT: '1',
// Restrict accepted YGOPro version. Format: version string; empty means no restriction. // Restrict accepted YGOPro version. Format: version string; empty means no restriction.
YGOPRO_VERSION: '0x1362', YGOPRO_VERSION: '0x1362',
// Additional accepted versions. Format: comma-separated version strings. // Additional accepted versions. Format: comma-separated version strings.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment