Mod
MISS
No reviews yet
A Mod that forward Minecraft connection on websocket
Provides a framework or library for other mods to use.
Forge is a popular mod loader for versions 1.1+ of Minecraft.
Neoforge is a fork of the Minecraft Forge available for versions 1.20.1+ of Minecraft. Many Forge mods are compatible with Neoforge and vice versa.
Fabric is a mod loader for versions 1.14+ of Minecraft, particularly popular for client side and optimization mods.
Community voices
Reviews
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
Compatibility
Supported Environments
About
Project Details
For authors
Embed Badge
If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
About
Description
MISS
MISS uses WebSocket to forward your Minecraft connection.
Features
- Support Websocket protocol on both client and server
- Use same port on the server to detect WebSocket connection
Reqirements
- Minecraft JE 1.19+
- Nginx 1.18+ (optional)
- SSL certificate (optional)
- Java 17+
Install
Server side
- Download from Modrinth
- Put the mod into
modsfolder - Restart Minecraft server
Client side
- Download from Modrinth
- Put the mod into
modsfolder - Restart Minecraft client
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 also can forward different paths to different servers
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;
}
}
How to connect
- Input
wss://mc.example.comto theServer Addressbar - Join the server
MISS 用于通过 WebSocket 转发 Minecraft 连接。这使得你可以通过 WebSocket 协议连接到 Minecraft 服务器,提供了一种新的网络传输方式。
功能特性
- 通过 WebSocket 协议转发 Minecraft 连接。
- 支持 Minecraft 客户端与服务器之间的双向通信。
前置要求
- Minecraft Java 版 1.19+
- Nginx 1.18+ (可选)
- 有效域名与SSL证书 (可选)
- Java 17+
模组安装
服务端
- 从 Modrinth 下载对应版本
- 将文件放入服务端
mods目录 - 重启 Minecraft 服务器
客户端
- 从 Modrinth 下载对应版本
- 将文件放入客户端
mods目录 - 启动 Minecraft 客户端
Nginx配置
反向代理服务器配置示例:
# 假设用户访问的域名是 mc.example.com,且已申请 SSL 证书
server {
listen 443 ssl;
server_name mc.example.com;
ssl_certificate /path/to/fullchain.pem;
ssl_certificate_key /path/to/privkey.pem;
# 该 location 其实也可以使用不同的 path 转发到不同的服务器
location / {
proxy_pass http://ip:25565; # 转发 Minecraft 服务器的地址(可以是域名或IP)
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;
}
}
请根据实际情况修改配置文件中的域名和证书路径。
如何连接服务器
- 安装客户端 MOD 后
- 启动游戏
- 添加服务器并在地址栏输入:
wss://mc.example.com - 点击"加入服务器"按钮
注意事项
- 确保443端口已打开,且你的服务器支持 WebSocket 协议。
- 确保你的 Minecraft 服务器配置允许通过 WebSocket 连接。
- 使用此模组时,请确保你的网络环境支持 WebSocket 协议。
Screenshots
Gallery
Versions
Files
Relations
Project Relations
More like this
Similar Mods
Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.
On ModDex
Community snapshot
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers