{"id":35769954,"url":"https://github.com/amphi2024/server","last_synced_at":"2026-02-03T10:17:21.133Z","repository":{"id":281780601,"uuid":"886039527","full_name":"amphi2024/server","owner":"amphi2024","description":"A simple Minecraft-like self-hosted server for Amphi Notes, Music, Photos, and Cloud.","archived":false,"fork":false,"pushed_at":"2026-02-01T07:57:20.000Z","size":10632,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-01T18:30:02.557Z","etag":null,"topics":["amphi","amphi-cloud","amphi-music","amphi-notes","amphi-photos","amphi-server","decentralized","file-sharing","free-software","kotlin","minecraft-server","open-source","opensource","self-hosting","sharing","vertx"],"latest_commit_sha":null,"homepage":"https://amphi.site/server","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amphi2024.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["siar1234"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2024-11-10T02:56:26.000Z","updated_at":"2026-02-01T07:53:12.000Z","dependencies_parsed_at":"2025-04-12T10:31:15.633Z","dependency_job_id":"1d8feecf-e75b-447e-a45d-545e467eb284","html_url":"https://github.com/amphi2024/server","commit_stats":null,"previous_names":["amphi2024/server"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/amphi2024/server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amphi2024%2Fserver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amphi2024%2Fserver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amphi2024%2Fserver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amphi2024%2Fserver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amphi2024","download_url":"https://codeload.github.com/amphi2024/server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amphi2024%2Fserver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29041057,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T10:09:22.136Z","status":"ssl_error","status_checked_at":"2026-02-03T10:09:16.814Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["amphi","amphi-cloud","amphi-music","amphi-notes","amphi-photos","amphi-server","decentralized","file-sharing","free-software","kotlin","minecraft-server","open-source","opensource","self-hosting","sharing","vertx"],"created_at":"2026-01-07T03:13:06.303Z","updated_at":"2026-02-03T10:17:21.128Z","avatar_url":"https://github.com/amphi2024.png","language":"Kotlin","funding_links":["https://github.com/sponsors/siar1234"],"categories":[],"sub_categories":[],"readme":"# Amphi Server\n\n[notes]: https://github.com/amphi2024/notes\n[music]: https://github.com/amphi2024/music\n[photos]: https://github.com/amphi2024/photos\n[cloud]: https://github.com/amphi2024/cloud\n\nA simple Minecraft-like self-hosted server for [Amphi Notes][notes], [Music][music], [Photos][photos], and [Cloud][cloud].\n\n![preview](preview.png)\n\n## Setup\n\nYou can host your server using Java Runtime. If this guide feels complicated, check out our step-by-step [YouTube Tutorial](https://www.youtube.com/@amphi2024).\n\n[//]: # (You can host your server using Java Runtime or Docker. If this guide feels complicated, check out our step-by-step [YouTube Tutorial]\u0026#40;https://www.youtube.com/@amphi2024\u0026#41;.)\n\n[//]: # (### Start with Java)\n\nFirst, download the server from GitHub Releases.\n\n```bash\ncurl -L https://github.com/amphi2024/server/releases/download/v?.?.?/server-?.?.?.jar -o server.jar\n# Replace ?.?.? with the latest version\n```\n\nInitialize the server:\n```bash\njava -jar server.jar\n```\n\n`config.example.yaml` will be generated. Rename it to `config.yaml` and customize your settings.\n\nRun as a Linux Service (Systemd): Create a file at `/etc/systemd/system/your-server.service`:\n\n```ini\n[Unit]\nDescription=My Server\nAfter=network.target\n\n[Service]\nType=simple\nUser=YOU\nWorkingDirectory=/path/to/server\nExecStart=java -jar /path/to/server/server.jar # or path/to/jre/bin/java -jar /path/to/server/server.jar\nRestart=on-failure\n\n[Install]\nWantedBy=multi-user.target\n```\n\nApply and start:\n\n```bash\nsudo systemctl daemon-reload\nsudo systemctl enable your-server\nsudo systemctl start your-server\n```\n\n[//]: # (### Start with Docker)\n\n[//]: # (If you want a containerized server. )\n\n[//]: # (First, pull the image.)\n\n[//]: # (```bash)\n\n[//]: # (docker pull amphi/server:latest)\n\n[//]: # (```)\n\n[//]: # (Then, run the server:)\n[//]: # (```bash)\n[//]: # (docker run -d \\)\n[//]: # (  -p 8000:8000 \\)\n[//]: # (  -v $\u0026#40;pwd\u0026#41;/data:/app/data \\)\n[//]: # (  -v $\u0026#40;pwd\u0026#41;/config.yaml:/app/config.yaml \\)\n[//]: # (  --name amphi-server \\)\n[//]: # (  amphi/server:latest)\n[//]: # (```)\n\n### Final Step\n\nTo access your server from outside your network, we recommend the following methods:\n\n- Tailscale\n- Cloudflare Tunnel\n- Ngrok\n- Custom Domain with HTTPS\n\n**WARNING**: Ensure your configuration is secure according to your chosen method. Avoid risky methods like direct port forwarding.\n\n## Update\n\nYou can easily update the server by replacing the JAR file.\n\n[//]: # (### For Java Users)\n\n```bash\n# Stop the Service (for Linux)\nsudo systemctl stop your-server\n\n# Rename the old server file\nmv server.jar server-old.jar\n\n# Download the latest version\ncurl -L https://github.com/amphi2024/server/releases/download/v?.?.?/server-?.?.?.jar -o server.jar\n\n# Restart the Service\nsudo systemctl restart your-server\n```\n\n[//]: # (### For Docker Users)\n\n[//]: # (```bash)\n\n[//]: # ()\n[//]: # (```)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famphi2024%2Fserver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famphi2024%2Fserver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famphi2024%2Fserver/lists"}