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:
- Download the modification
- Place the file in the mods folder
- Restart the Minecraft server
On the client:
- Download the client version of the modification
- Add the file to the mods folder
- 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
- Enter
wss://mc.example.com
in the "Server Address" field - 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