-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# VIAaaS | ||
VIAaaS is the Minecraft plugin VIAaaS made standalone as a proxy. | ||
|
||
## Server Ports | ||
The minecraft server requires a single port for access (default 25565), and one TCP port 25543, to be used for HTTPS and WebSocket connections. | ||
|
||
| Port | default | | ||
|------------|---------| | ||
| Game | 25565 | | ||
| WS & HTTPS | 25543 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO", | ||
"meta": { | ||
"version": "PTDL_v1", | ||
"update_url": null | ||
}, | ||
"exported_at": "2021-06-28T11:03:44-04:00", | ||
"name": "VIAaaS", | ||
"author": "[email protected]", | ||
"description": "VIAaaS - ViaVersion as a Service - Standalone ViaVersion proxy", | ||
"features": null, | ||
"images": [ | ||
"ghcr.io\/pterodactyl\/yolks:java_11", | ||
"ghcr.io\/pterodactyl\/yolks:java_16" | ||
], | ||
"file_denylist": [], | ||
"startup": "java -Xms128M -Xmx{{SERVER_MEMORY}}M -jar {{SERVER_JARFILE}}", | ||
"config": { | ||
"files": "{\r\n \"config\/viaaas.yml\": {\r\n \"parser\": \"yaml\",\r\n \"find\": {\r\n \"port\": \"{{server.build.default.port}}\",\r\n \"bind-address\": \"0.0.0.0\"\r\n }\r\n }\r\n}", | ||
"startup": "{\n \"done\": \"Listening on \",\n \"userInteraction\": [\n \"Listening on /0.0.0.0:\"\n ]\n}", | ||
"logs": "{\r\n \"custom\": false,\r\n \"location\": \"logs\/latest.log\"\r\n}", | ||
"stop": "end" | ||
}, | ||
"scripts": { | ||
"installation": { | ||
"script": "#!\/bin\/bash\r\n# VIAaaS Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\napt update\r\napt install -y curl\r\n\r\ncd \/mnt\/server\r\n\r\ncurl -Lf -o ${SERVER_JARFILE} \"https:\/\/jitpack.io\/com\/github\/ViaVersion\/VIAaaS\/master-SNAPSHOT\/VIAaaS-master-SNAPSHOT-all.jar\"", | ||
"container": "debian:buster-slim", | ||
"entrypoint": "bash" | ||
} | ||
}, | ||
"variables": [ | ||
{ | ||
"name": "VIAaaS Jar File", | ||
"description": "The name of the jarfile to be used when downloading & running VIAaaS", | ||
"env_variable": "SERVER_JARFILE", | ||
"default_value": "VIAaaS-all.jar", | ||
"user_viewable": false, | ||
"user_editable": false, | ||
"rules": "required|string" | ||
} | ||
] | ||
} |