Compatibility
Minecraft: Java Edition
Platforms
Tags
Creators
Details
A lightweight, no-fuss web server plugin for Paper Minecraft servers — host static websites directly from your server with zero external setup.
What is this?
ZyveraWeb Lite lets you serve static web content (HTML, CSS, JavaScript, images, and more) straight from your Minecraft server. No need for Apache, Nginx, or other external web servers — just install the plugin and go.
Features
- 🌐 Serve static files via HTTP or HTTPS
- 🔒 Optional HTTPS support with custom SSL certificates
- 📂 Automatic default web file generation on first launch
- 🛡️ Built-in path traversal protection to keep your server safe
- 📄 Automatically serves
index.htmlwhen accessing directories - 🏷️ Branded footer automatically added to HTML pages
Getting Started
- Drop the plugin jar into your server's
plugins/folder and restart. - Default web files are created automatically in
plugins/ZyveraWeb-lite/www/. - Tweak settings in
plugins/ZyveraWeb-lite/config.yml(see below). - Access your site at
http://your-server-ip:8080(default) or the HTTPS port if enabled.
Configuration
Edit plugins/ZyveraWeb-lite/config.yml to adjust settings:
^^^yaml
server:
host: "0.0.0.0"
domain: "" # Just to display. Leave empty for loopback (localhost)
http:
enabled: true
port: 8080
https:
enabled: false
port: 8443
SSLPubl: fullchain.pem
SSLPriv: privkey.pem
^^^
HTTPS Setup
Enable HTTPS by setting https.enabled to true, then place your SSL certificate (fullchain.pem) and private key (privkey.pem) in plugins/ZyveraWeb-lite/ssl/.


