Run a Website and powerful API alongside your server
Find a file
2022-08-26 20:22:01 +02:00
.gradle .gradle directory 2022-08-26 20:10:34 +02:00
.idea Fixed disabling server through config file having no effect 2022-07-25 14:53:21 +02:00
build build directory updates 2022-08-26 20:11:00 +02:00
gradle/wrapper Added base mod 2022-07-24 23:58:39 +02:00
run run directory 2022-08-26 20:09:56 +02:00
src/main Added ServerHandler for easier interaction with webserver 2022-08-26 20:06:04 +02:00
.gitignore Added missing gitignore file 2022-07-26 20:05:16 +02:00
build.gradle Added base mod 2022-07-24 23:58:39 +02:00
gradle.properties Updated project to 1.19.2 2022-08-26 20:22:01 +02:00
gradlew Added base mod 2022-07-24 23:58:39 +02:00
gradlew.bat Added base mod 2022-07-24 23:58:39 +02:00
LICENSE Added base mod 2022-07-24 23:58:39 +02:00
README.md Added Modloader support badges to README 2022-08-06 15:36:31 +02:00
settings.gradle Added base mod 2022-07-24 23:58:39 +02:00

McWebserver

This is the fabric port, the Forge version is available here

License Discord CF Modrinth

About the mod

This mod runs a simple HTTP server alongside the minecraft server in seperate threads. The mod allows You to host websites, share files and Server Backups directly from your server without the need of a seperate server setup. Adjust the port and design your website.

The http server has up to no performance impact on the server on idle and only slightly affects it for a short amount of time (usually a couple milliseconds) when a user visits the website or requests a file.

Currently no ssl encryption is implemented yet and therefore HTTPS isn't possible, but it's coming soon(TM). A Forge port is also on the way.

Warning

If used wrongly this mod can be a security risk for your server and all devices connected to the network that your server is in.

Do only put files into your webservers root directory that you want to be accessible to the internet. Those files are public to the entire world.

Setup

  1. Head over to modrinth or curseforge and download the correct version of the mod into your mods folder.
  2. Restart Your Minecraft Server and let the mod create the config file. The webserver will be offline by default.
  3. In the config file, enable the webserver and adjust all settings if needed.
  4. Add the following files to your Webservers root directory:
    • index.html (the homepage)
    • 404.html (the website that shows up if a request is sent for a file that doesn't exist on the server)
    • not_supported.html (this is page is very unlikely to show up at any time and isn't necessary)
  5. Restart your Minecraft server and You're good to go!