diff --git a/config/database.development.json b/config/database.development.json deleted file mode 100644 index 474dc8f..0000000 --- a/config/database.development.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "host": "example.com", - "port": 3306, - "user": "openrct2", - "password": null, - "database": "openrct2" -} diff --git a/config/database.json b/config/database.json index 9924c87..48f8fd0 100644 --- a/config/database.json +++ b/config/database.json @@ -1,5 +1,9 @@ { "connectionLimit": 15, "debug": false, - "timezone": "local" + "timezone": "local", + "host": "db", + "user": "openrct2", + "password": "letmein", + "database": "openrct2" } diff --git a/config/http.json b/config/http.json index 8b105f0..bc44d1c 100644 --- a/config/http.json +++ b/config/http.json @@ -1,6 +1,6 @@ { "address": null, - "port": 5000, + "port": 80, "path": null, "trustProxy": false, "primaryDomain": "example.com", diff --git a/config/http.production.json b/config/http.production.json deleted file mode 100644 index bc8872f..0000000 --- a/config/http.production.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "port": 80, - "path": null, - "primaryDomain": "openrct2.org", - "forcePrimaryDomain": true -} diff --git a/config/site.json b/config/site.json index de2dd60..4f7a66b 100644 --- a/config/site.json +++ b/config/site.json @@ -1,5 +1,5 @@ { "title": "OpenRCT2", - "publicUrl": "http://localhost:4000", - "forumsPublicUrl": "http://forums.local" + "publicUrl": "http://localhost:5000", + "forumsPublicUrl": "https://forums.openrct2.org" } diff --git a/config/site.production.json b/config/site.production.json deleted file mode 100644 index 93f7bdd..0000000 --- a/config/site.production.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "publicUrl": "https://openrct2.org", - "forumsPublicUrl": "https://forums.openrct2.org" -}