{"id":25495740,"url":"https://github.com/litermc/miss","last_synced_at":"2026-04-06T19:03:08.866Z","repository":{"id":274336666,"uuid":"922594893","full_name":"LiterMC/MISS","owner":"LiterMC","description":"A Mod that forward Minecraft connection on websocket","archived":false,"fork":false,"pushed_at":"2025-02-21T21:45:07.000Z","size":516,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"1.19.2","last_synced_at":"2025-04-10T02:54:56.327Z","etag":null,"topics":["minecraft","minecraft-mod","websocket"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LiterMC.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-26T16:20:54.000Z","updated_at":"2025-03-06T07:33:13.000Z","dependencies_parsed_at":"2025-04-10T02:43:16.197Z","dependency_job_id":"9179cd25-cfc3-4a4f-a5b5-80a17df340ba","html_url":"https://github.com/LiterMC/MISS","commit_stats":null,"previous_names":["litermc/miss"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/LiterMC/MISS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiterMC%2FMISS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiterMC%2FMISS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiterMC%2FMISS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiterMC%2FMISS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LiterMC","download_url":"https://codeload.github.com/LiterMC/MISS/tar.gz/refs/heads/1.19.2","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiterMC%2FMISS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31485516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T17:22:55.647Z","status":"ssl_error","status_checked_at":"2026-04-06T17:22:54.741Z","response_time":112,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["minecraft","minecraft-mod","websocket"],"created_at":"2025-02-19T00:39:11.382Z","updated_at":"2026-04-06T19:03:08.844Z","avatar_url":"https://github.com/LiterMC.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MISS\n\n[![Modrinth Downloads](https://img.shields.io/modrinth/dt/miss?color=4\u0026label=Downloads\u0026logo=modrinth)](https://modrinth.com/mod/miss)\n[![GitHub](https://img.shields.io/badge/GitHub-Repo-blue?logo=github)](https://github.com/LiterMC/MISS/)\n[![License](https://img.shields.io/badge/License-GPL3.0-green.svg)](LICENSE)\n![Minecraft Version](https://img.shields.io/badge/Minecraft-1.19%2B-blue?logo=minecraft)\n\nMISS uses WebSocket to forward your Minecraft connection.\n\n## Features\n\n- Support Websocket protocol on both client and server\n- Use same port on the server to detect WebSocket connection\n\n## Reqirements\n\n- Minecraft JE 1.19+\n- Nginx 1.18+ (optional)\n- SSL certificate (optional)\n- Java 17+\n\n## Install\n\n#### Server side\n\n1. Download from [Modrinth](https://modrinth.com/mod/miss/versions)\n2. Put the mod into `mods` folder\n3. Restart Minecraft server\n\n#### Client side\n\n1. Download from [Modrinth](https://modrinth.com/mod/miss/versions)\n2. Put the mod into `mods` folder\n3. Restart Minecraft client\n\n## Nginx Configuration\n\nExample:\n```nginx\nserver {\n    listen 443 ssl;\n    server_name mc.example.com;\n\n    ssl_certificate /path/to/fullchain.pem;\n    ssl_certificate_key /path/to/privkey.pem;\n\n    # You also can forward different paths to different servers\n    location / {\n        proxy_pass http://ip_or_hostname:25565;\n        proxy_http_version 1.1;\n        proxy_set_header Upgrade $http_upgrade;\n        proxy_set_header Connection \"Upgrade\";\n        proxy_set_header Host $host;\n        proxy_set_header X-Real-IP $remote_addr;\n        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n        proxy_set_header X-Forwarded-Proto $scheme;\n    }\n}\n```\n\n## How to connect\n\n1. Input `wss://mc.example.com` to the `Server Address` bar\n2. Join the server\n\n---\n\n# MISS\n\nMISS 是一个 Minecraft 模组，用于通过 WebSocket 转发 Minecraft 连接。这使得你可以通过 WebSocket 协议连接到 Minecraft 服务器，提供了一种新的网络传输方式。\n\n## 功能特性\n\n- 通过 WebSocket 协议转发 Minecraft 连接。\n- 支持 Minecraft 客户端与服务器之间的双向通信。\n\n\n## 前置要求\n\n- Minecraft Java 版 1.19+\n- Nginx 1.18+ \n- 有效域名与SSL证书 (可选)\n- Java 17+\n\n## 模组安装\n\n#### 服务端\n\n1. 从 [Modrinth](https://modrinth.com/mod/miss/versions) 下载对应版本\n2. 将文件放入服务端 `mods` 目录\n3. 重启 Minecraft 服务器\n\n#### 客户端\n\n1. 从 [Modrinth](https://modrinth.com/mod/miss/versions) 下载对应版本\n2. 将文件放入客户端 `mods` 目录\n3. 启动 Minecraft 客户端\n\n## Nginx配置\n\n反向代理服务器配置示例：\n\n```nginx\n# 假设用户访问的域名是 mc.example.com，且已申请 SSL 证书\nserver {\n    listen 443 ssl;\n    server_name mc.example.com;\n\n    ssl_certificate /path/to/fullchain.pem;\n    ssl_certificate_key /path/to/privkey.pem;\n\n    # 该 location 其实也可以使用不同的 path 转发到不同的服务器\n    location / {\n        proxy_pass http://ip:25565; # 转发 Minecraft 服务器的地址（可以是域名或IP）\n        proxy_http_version 1.1;\n        proxy_set_header Upgrade $http_upgrade;\n        proxy_set_header Connection \"Upgrade\";\n        proxy_set_header Host $host;\n        proxy_set_header X-Real-IP $remote_addr;\n        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n        proxy_set_header X-Forwarded-Proto $scheme;\n    }\n}\n```\n\n请根据实际情况修改配置文件中的域名和证书路径。\n\n## 如何连接服务器\n\n1. 安装客户端 MOD 后\n2. 启动游戏\n3. 添加服务器并在地址栏输入：\n   `wss://mc.example.com`\n4. 点击\"加入服务器\"按钮\n\n## 注意事项\n\n- 确保443端口已打开，且你的服务器支持 WebSocket 协议。\n- 确保你的 Minecraft 服务器配置允许通过 WebSocket 连接。\n- 使用此模组时，请确保你的网络环境支持 WebSocket 协议。\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flitermc%2Fmiss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flitermc%2Fmiss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flitermc%2Fmiss/lists"}