diff --git a/README.md b/README.md index c1df35db..a18aa3e7 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,7 @@ If you are reading this it looks like you are looking to add an egg to your serv * [Travertine](/minecraft/proxy/java/travertine) * [TyphoonLimbo](/minecraft/proxy/java/typhoonlimbo) * [Velocity](/minecraft/proxy/java/velocity) + * [VIAaaS](/minecraft/proxy/java/viaaas) * [Waterfall](/minecraft/proxy/java/waterfall) * [Cross Platform](/minecraft/proxy/cross_platform) * [GeyserMC](/minecraft/proxy/cross_platform/geyser) diff --git a/minecraft/README.md b/minecraft/README.md index 1cd6d519..eec1eeec 100644 --- a/minecraft/README.md +++ b/minecraft/README.md @@ -32,6 +32,7 @@ It’s set in infinitely-generated worlds of wide open terrain - icy mountains, * [Travertine](/minecraft/proxy/java/travertine) * [TyphoonLimbo](/minecraft/proxy/java/typhoonlimbo) * [Velocity](/minecraft/proxy/java/velocity) + * [VIAaaS](/minecraft/proxy/java/viaaas) * [Waterfall](/minecraft/proxy/java/waterfall) * [Cross Platform](/minecraft/proxy/cross_platform) * [GeyserMC](/minecraft/proxy/cross_platform/geyser) diff --git a/minecraft/proxy/README.md b/minecraft/proxy/README.md index 0ade0eb7..b0364aaa 100644 --- a/minecraft/proxy/README.md +++ b/minecraft/proxy/README.md @@ -2,10 +2,11 @@ * [Java](/minecraft/proxy/java/) * [FlameCord](/minecraft/proxy/java/flamecord) - * [Waterfall](/minecraft/proxy/java/waterfall) * [Travertine](/minecraft/proxy/java/travertine) - * [Velocity](/minecraft/proxy/java/velocity) * [TyphoonLimbo](/minecraft/proxy/java/typhoonlimbo) + * [Velocity](/minecraft/proxy/java/velocity) + * [VIAaaS](/minecraft/proxy/java/viaaas) + * [Waterfall](/minecraft/proxy/java/waterfall) * [Cross Platform](/minecraft/proxy/cross_platform) * [GeyserMC](/minecraft/proxy/cross_platform/geyser) * [Waterdog](/minecraft/proxy/cross_platform/waterdog) diff --git a/minecraft/proxy/java/README.md b/minecraft/proxy/java/README.md index b9be1296..b546c9c4 100644 --- a/minecraft/proxy/java/README.md +++ b/minecraft/proxy/java/README.md @@ -17,6 +17,9 @@ A limbo server is a fallback server able to handle a massive amount of simultane [Velocity](https://velocitypowered.com) Velocity is a Minecraft server proxy with unparalleled server support, scalability, and flexibility. +#### VIAaaS +[VIAaaS](https://github.com/ViaVersion/VIAaaS) is the Minecraft plugin ViaVersion made standalone as a proxy. + #### Waterfall [Waterfall](https://papermc.io/downloads#Waterfall) Paper fork of the BungeeCord software, with improved Forge support and more features. \ No newline at end of file diff --git a/minecraft/proxy/java/viaaas/README.md b/minecraft/proxy/java/viaaas/README.md new file mode 100644 index 00000000..d84615e9 --- /dev/null +++ b/minecraft/proxy/java/viaaas/README.md @@ -0,0 +1,12 @@ +# VIAaaS +VIAaaS is the Minecraft plugin ViaVersion made standalone as a proxy. + +More information is available here: https://github.com/ViaVersion/VIAaaS + +## 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 | diff --git a/minecraft/proxy/java/viaaas/egg-v-i-aaa-s.json b/minecraft/proxy/java/viaaas/egg-v-i-aaa-s.json new file mode 100644 index 00000000..19837abd --- /dev/null +++ b/minecraft/proxy/java/viaaas/egg-v-i-aaa-s.json @@ -0,0 +1,50 @@ +{ + "_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO", + "meta": { + "version": "PTDL_v1", + "update_url": null + }, + "exported_at": "2021-06-28T11:55:37-04:00", + "name": "VIAaaS", + "author": "regulad@outlook.com", + "description": "VIAaaS - ViaVersion as a Service - Standalone ViaVersion proxy", + "features": null, + "images": [ + "ghcr.io\/pterodactyl\/yolks:java_16" + ], + "file_denylist": [], + "startup": "java -Xms128M -Xmx{{SERVER_MEMORY}}M -jar {{SERVER_JARFILE}} -sslPort={{WEBSERVER_PORT}}", + "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": "{\r\n \"done\": \"Application started:\"\r\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": true, + "user_editable": true, + "rules": "required|string" + }, + { + "name": "Webserver Port", + "description": "The port to listen to webserver connections on.", + "env_variable": "WEBSERVER_PORT", + "default_value": "25543", + "user_viewable": true, + "user_editable": true, + "rules": "required|string" + } + ] +} \ No newline at end of file