XMPlus® pinned «https://demo.xmplus.dev Admin ---------------------------- email: demo@xmplus.dev password: demo12345 User ---------------------------- user@xmplus.dev user12345 Release Date: Friday March 13, 2026 Free to use for up to 20 users or 50 subscriptions …»
XMPlus® pinned «https://documentation.xmplus.dev»
XMPlus®
https://documentation.xmplus.dev
Added sing-box backend for servers. Migration script for older panel to new panel will be available this Friday.
Free to use with all features for 10 Users or 20 Subscriptions max.
Cross-platform (Android, Windows, Mac, ios, Linux) apps coming soon.
For old panels v1, v2 (only updates for bug fixes and no new features). There will be updates once a month till end of the year 2026. If you have any bugs, Report or send message to @XMPlusBugs_bot. Clearly state your issue(bug) and panel type and version number.
Apps (1 platform. Eg, android) will be free for users with at least one yearly subscription plan. No matter number of plans purchased (only 1 free). You will have to open a support ticket and wait for the app to be compiled for you. Monthly updates unless necessary. Will be fully ready at the end of this month(Adding in-app order and payments).
Latest update have some issues and will be resolve within an hour.
Latest update have some issues and will be resolve within an hour.
While i try and fix issue, you can roll back to previous version if you want to.

1. List all images and get the id for xmplus-api & xmplus-ui

docker images -a

2. Remove api and ui images only by id

docker rmi xxxxxxxxxx -f


3. Set old version before today's update by editing docker-compose.yml in /home/XMPlusPanel/docker-compose.yml and setting image version

API

image: xmplusdev/xmplus-api:v2606050

UI

image: xmplusdev/xmplus-ui:v2606050


Save and run

cd /home/XMPlusPanel

docker compose pull

docker compose up -d
XMPlus®
UI nginx issue found after hours of debugging.
Fix is to increase proxy buffer size
XMPlus®
Fix is to increase proxy buffer size
location / {
proxy_pass http://ui:3005;
proxy_http_version 1.1;

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;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;

proxy_set_header Connection "";
proxy_buffering off;
proxy_request_buffering off;

proxy_buffer_size 16k;
proxy_buffers 4 16k;
proxy_busy_buffers_size 32k;
}
add this section for the UI in nginx proxy manager
XMPlus®
add this section for the UI in nginx proxy manager
You can now update panel to latest (including backend servers) and fix ui issue with this