add back games, conform them to new title dispatch

This commit is contained in:
Hay1tsme
2023-02-17 01:02:21 -05:00
parent f18e939dd0
commit 7e3396a7ff
214 changed files with 19412 additions and 23 deletions

View File

@ -0,0 +1,6 @@
server:
enable: True
loglevel: "info"
crypto:
encrypted_only: False

9
example_config/cxb.yaml Normal file
View File

@ -0,0 +1,9 @@
server:
enable: True
loglevel: "info"
hostname: "localhost"
ssl_enable: False
port: 8082
port_secure: 443
ssl_cert: "cert/title.crt"
ssl_key: "cert/title.key"

4
example_config/diva.yaml Normal file
View File

@ -0,0 +1,4 @@
server:
enable: True
loglevel: "info"

3
example_config/mai2.yaml Normal file
View File

@ -0,0 +1,3 @@
server:
enable: True
loglevel: "info"

View File

@ -0,0 +1,60 @@
# Allnet
server {
listen 80;
server_name naominet.jp;
location / {
proxy_pass http://localhost:8000/;
}
}
# Non-SSL titles
server {
listen 80;
server_name your.hostname.here;
location / {
proxy_pass http://localhost:8080/;
}
}
# SSL titles
server {
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
server_name your.hostname.here;
ssl_certificate /path/to/cert/title.crt;
ssl_certificate_key /path/to/cert/title.key;
ssl_session_timeout 1d;
ssl_session_cache shared:MozSSL:10m;
ssl_session_tickets off;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
ssl_ciphers "ALL:@SECLEVEL=0";
ssl_prefer_server_ciphers off;
location / {
proxy_pass http://localhost:8080/;
}
}
# Billing
server {
listen 8443 ssl;
server_name ib.naominet.jp;
ssl_certificate /path/to/cert/server.pem;
ssl_certificate_key /path/to/cert/server.key;
ssl_session_timeout 1d;
ssl_session_cache shared:MozSSL:10m;
ssl_session_tickets off;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
ssl_ciphers "ALL:@SECLEVEL=1";
ssl_prefer_server_ciphers off;
location / {
proxy_pass http://localhost:8444/;
}
}

View File

@ -0,0 +1,3 @@
server:
enable: True
loglevel: "info"

32
example_config/wacca.yaml Normal file
View File

@ -0,0 +1,32 @@
server:
enable: True
loglevel: "info"
mods:
always_vip: True
infinite_tickets: True
infinite_wp: True
gates:
enabled_gates:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 21
- 22