2022-10-16 00:05:08 +02:00
|
|
|
# Core database settings, required so that the system can persist scores and accounts.
|
2019-12-08 22:43:49 +01:00
|
|
|
database:
|
2021-08-20 06:43:59 +02:00
|
|
|
# IP or DNS entry for MySQL instance.
|
2019-12-08 22:43:49 +01:00
|
|
|
address: "localhost"
|
2021-08-20 06:43:59 +02:00
|
|
|
# Database that will be used.
|
2019-12-08 22:43:49 +01:00
|
|
|
database: "bemani"
|
2021-08-20 06:43:59 +02:00
|
|
|
# User who has full credentials to the above DB.
|
2019-12-08 22:43:49 +01:00
|
|
|
user: "bemani"
|
2021-08-20 06:43:59 +02:00
|
|
|
# Password of said user.
|
2019-12-08 22:43:49 +01:00
|
|
|
password: "bemani"
|
2021-08-20 21:37:26 +02:00
|
|
|
# Force the network to read-only mode, refusing to write to the DB
|
|
|
|
# except for creating/destroying frontend sessions to enable login.
|
|
|
|
# Set this to False or delete this to run in production mode.
|
|
|
|
read_only: False
|
2019-12-08 22:43:49 +01:00
|
|
|
|
2022-10-16 00:05:08 +02:00
|
|
|
# Core server settings, required so that the backend knows what to tell games for core
|
|
|
|
# routing and server URLs.
|
2019-12-08 22:43:49 +01:00
|
|
|
server:
|
2021-08-20 06:43:59 +02:00
|
|
|
# Advertised server IP or DNS entry games will connect to.
|
2019-12-08 22:43:49 +01:00
|
|
|
address: "192.168.0.1"
|
2021-08-20 06:43:59 +02:00
|
|
|
# Advertised keepalive address, must be globally pingable. Delete
|
|
|
|
# this to use the address above instead of a unique keepalive address.
|
2019-12-08 22:43:49 +01:00
|
|
|
keepalive: "127.0.0.1"
|
2021-08-20 06:43:59 +02:00
|
|
|
# What port on the above address games will connect to.
|
2019-12-08 22:43:49 +01:00
|
|
|
port: 80
|
2021-08-20 06:43:59 +02:00
|
|
|
# Whether games should connect over HTTPS.
|
2019-12-08 22:43:49 +01:00
|
|
|
https: False
|
|
|
|
# Advertised frontend URI. Delete this to mask the frontend address.
|
|
|
|
uri: "https://eagate.573.jp"
|
|
|
|
# URI that users hitting the GET interface will be redirected to.
|
2021-08-20 06:43:59 +02:00
|
|
|
# Delete this to return an HTTP error instead of redirecting.
|
2019-12-08 22:43:49 +01:00
|
|
|
redirect: "https://eagate.573.jp"
|
|
|
|
# Whether PCBIDs must be added to the network before games will work.
|
|
|
|
enforce_pcbid: False
|
2021-08-29 03:47:45 +02:00
|
|
|
# How many PCBIDs an arcade owner can grant to themselves on the arcade
|
|
|
|
# page. Note that this setting is irrelevant if PCBID enforcing is off.
|
|
|
|
# Set to 0 or delete this setting to disable self-granting PCBIDs.
|
|
|
|
pcbid_self_grant_limit: 0
|
2021-09-07 04:48:33 +02:00
|
|
|
# Default region for this network (set to USA by default). See RegionConstants
|
|
|
|
# for details on acceptible values. The range of accepted values is 1-56 matching
|
|
|
|
# the 56 normal regions found in RegionConstants, and 1000 for "Europe" and
|
|
|
|
# 2000 for "Other".
|
|
|
|
region: 56
|
2022-10-16 00:05:08 +02:00
|
|
|
# The custom area code displayed in the system settings menu on various games.
|
|
|
|
# Delete this setting to force games to display "Unobtained" instead.
|
|
|
|
area: "USA"
|
2019-12-08 22:43:49 +01:00
|
|
|
|
2021-08-03 03:14:08 +02:00
|
|
|
# Webhook URLs. These allow for game scores from games with scorecard support to be broadcasted to outside services.
|
|
|
|
# Delete this to disable this support.
|
2021-05-18 03:10:18 +02:00
|
|
|
webhooks:
|
2021-06-15 12:34:48 +02:00
|
|
|
discord:
|
|
|
|
iidx:
|
|
|
|
- "https://discord.com/api/webhooks/1232122131321321321/eauihfafaewfhjaveuijaewuivhjawueihoi"
|
2021-09-04 18:06:00 +02:00
|
|
|
pnm:
|
|
|
|
- "https://discord.com/api/webhooks/1232122131321321321/eauihfafaewfhjaveuijaewuivhjawueihoi"
|
2022-10-16 00:05:08 +02:00
|
|
|
|
2022-11-13 17:56:59 +01:00
|
|
|
# Assets URLs. These allow for in-game asset rendering on the front end. Delete this to disable asset rendering.
|
|
|
|
assets:
|
|
|
|
jubeat:
|
|
|
|
emblems: "/directory/where/you/output/emblem/assets"
|
|
|
|
|
2022-10-16 00:05:08 +02:00
|
|
|
# Global PASESLI settings, which can be overridden on a per-arcade basis. These form the default settings.
|
2019-12-08 22:43:49 +01:00
|
|
|
paseli:
|
|
|
|
# Whether PASELI is enabled on the network.
|
|
|
|
enabled: True
|
|
|
|
# Whether infinite PASELI balance is enabled on the network.
|
|
|
|
infinite: True
|
|
|
|
|
2022-10-16 00:05:08 +02:00
|
|
|
# Game series to provide support for. Disabling something here hides it from the frontend and makes the backend
|
|
|
|
# ignore games coming from that series.
|
2019-12-08 22:43:49 +01:00
|
|
|
support:
|
2021-08-20 06:43:59 +02:00
|
|
|
# Bishi Bashi frontend/backend enabled.
|
2019-12-08 22:43:49 +01:00
|
|
|
bishi: True
|
2021-09-04 17:54:27 +02:00
|
|
|
# Metal Gear Arcade frontend/backend enabled
|
|
|
|
mga: True
|
|
|
|
# DDR frontend/backend enabled
|
2019-12-08 22:43:49 +01:00
|
|
|
ddr: True
|
2021-08-20 06:43:59 +02:00
|
|
|
# IIDX frontend/backend enabled.
|
2019-12-08 22:43:49 +01:00
|
|
|
iidx: True
|
2021-08-20 06:43:59 +02:00
|
|
|
# Jubeat frontend/backend enabled.
|
2019-12-08 22:43:49 +01:00
|
|
|
jubeat: True
|
2021-08-20 06:43:59 +02:00
|
|
|
# Museca frontend/backend enabled.
|
2019-12-08 22:43:49 +01:00
|
|
|
museca: True
|
2021-08-20 06:43:59 +02:00
|
|
|
# Pop'n Music frontend/backend enabled.
|
2019-12-08 22:43:49 +01:00
|
|
|
pnm: True
|
2021-08-20 06:43:59 +02:00
|
|
|
# Reflec Beat frontend/backend enabled.
|
2019-12-08 22:43:49 +01:00
|
|
|
reflec: True
|
2021-08-20 06:43:59 +02:00
|
|
|
# SDVX frontend/backend enabled.
|
2019-12-08 22:43:49 +01:00
|
|
|
sdvx: True
|
|
|
|
|
2021-08-20 06:43:59 +02:00
|
|
|
# Key used to encrypt cookies, should be unique per network instance.
|
2019-12-08 22:43:49 +01:00
|
|
|
secret_key: 'this_is_a_secret_please_change_me'
|
2021-08-20 06:43:59 +02:00
|
|
|
# Name of this network.
|
2019-12-08 22:43:49 +01:00
|
|
|
name: 'e-AMUSEMENT Network'
|
2021-08-20 06:43:59 +02:00
|
|
|
# Administrative contact for this network.
|
2019-12-08 22:43:49 +01:00
|
|
|
email: 'nobody@nowhere.com'
|
2023-08-13 20:56:43 +02:00
|
|
|
# Cache DIR, should point somewhere other than /tmp for production instances that wish
|
|
|
|
# to use filesystem caching. For memcached, delete this value.
|
2019-12-08 22:43:49 +01:00
|
|
|
cache_dir: '/tmp'
|
2023-08-13 20:56:43 +02:00
|
|
|
# memcached server, should point somewhere other than this bogus value for production
|
|
|
|
# instances that wish to use memcached backend. For filesystem caching, delete this value.
|
|
|
|
memcached_server: 1.2.3.4:5678
|
2020-05-08 20:22:31 +02:00
|
|
|
# Number of seconds to preserve event logs before deleting them.
|
2021-08-20 06:43:59 +02:00
|
|
|
# Set to zero or delete to disable deleting logs.
|
2020-05-08 20:22:31 +02:00
|
|
|
event_log_duration: 2592000
|
2022-10-15 21:40:59 +02:00
|
|
|
# Whether we log verbosely (full packet request and response) to web server logs or not.
|
|
|
|
verbose: true
|
2021-08-31 23:40:30 +02:00
|
|
|
# Frontend theme directory where sitewide CSS and favicon should be found.
|
|
|
|
theme: "default"
|