Download MISS — Minecraft Mods — MetaMods

Downloads

0

Last update

8 months ago

Versions

1.19 — 1.21.4
Client
Fabric
Forge
Neoforge
Libraries
Utils

MISS

This modification allows you to establish a connection with Minecraft servers using the WebSocket protocol, creating a new way of interaction between the game client and server.

Key Features

  • Support for the WebSocket protocol on both server and client sides
  • Use of the server's standard port for detecting WebSocket connections

System Requirements

For proper operation of the modification you'll need:

  • Minecraft Java Edition version 1.19 or higher
  • Nginx version 1.18 or newer (optional)
  • SSL certificate (optional)
  • Java 17 or later version

Installation Guide

On the server:

  1. Download the modification
  2. Place the file in the mods folder
  3. Restart the Minecraft server

On the client:

  1. Download the client version of the modification
  2. Add the file to the mods folder
  3. Restart the game

Nginx Configuration Example

server {
    listen 443 ssl;
    server_name mc.example.com;

    ssl_certificate /path/to/fullchain.pem;
    ssl_certificate_key /path/to/privkey.pem;

# You can configure forwarding of different paths
    location / {
        proxy_pass http://ip_or_hostname:25565;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "Upgrade";
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }
}

Remember to adapt the settings to match your server configuration.

Server Connection Process

  1. Enter wss://mc.example.com in the "Server Address" field
  2. Click the connect button

Important Considerations

  • Ensure port 443 is open in your network
  • Verify WebSocket protocol support with your hosting provider
  • Check that your Minecraft server configuration is correctly set up
Project members
zyxkad

zyxkad

Developer

YlovexLN

YlovexLN

Developer

Created: 31 Jan 2025

ID: 70222