XMPlus®
https://documentation.xmplus.dev
Added sing-box backend for servers. Migration script for older panel to new panel will be available this Friday.
### Installation
https://documentation.xmplus.dev/en/getting-started/installation
###Migration
https://documentation.xmplus.dev/en/getting-started/migration
### Demo Site(XMPlusNuxt)
https://demo.xmplus.dev
### XMPlus(Nuxt) Authorization
https://authorizer.xmplus.dev
https://documentation.xmplus.dev/en/getting-started/installation
###Migration
https://documentation.xmplus.dev/en/getting-started/migration
### Demo Site(XMPlusNuxt)
https://demo.xmplus.dev
### XMPlus(Nuxt) Authorization
https://authorizer.xmplus.dev
XMPlus
Installation
How to install andrun panel with nginx proxy manager
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.
Install documentation updated, reload the page.
https://documentation.xmplus.dev/en/getting-started/installation
https://documentation.xmplus.dev/en/getting-started/installation
XMPlus
Installation
How to install andrun panel with nginx proxy manager
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).
Note: Backend server config file has been upgraded. Please follow the documentations below to reconfigure nodes
1. Run terminal command : `xmpanel update` to upgrade panel
2. Server & Node Setup
https://documentation.xmplus.dev/en/configuration/node
3. XMRay Server configuration
https://documentation.xmplus.dev/en/xmray-server/install-server
Transport Settings
https://documentation.xmplus.dev/en/xmray-server/transport-settings
Security Settings
https://documentation.xmplus.dev/en/xmray-server/security-settings
4. XMBox Server configuration
https://documentation.xmplus.dev/en/xmray-server/install-server
Transport Settings
https://documentation.xmplus.dev/en/xmbox-server/transport-settings
Security Settings
https://documentation.xmplus.dev/en/xmbox-server/security-settings
1. Run terminal command : `xmpanel update` to upgrade panel
2. Server & Node Setup
https://documentation.xmplus.dev/en/configuration/node
3. XMRay Server configuration
https://documentation.xmplus.dev/en/xmray-server/install-server
Transport Settings
https://documentation.xmplus.dev/en/xmray-server/transport-settings
Security Settings
https://documentation.xmplus.dev/en/xmray-server/security-settings
4. XMBox Server configuration
https://documentation.xmplus.dev/en/xmray-server/install-server
Transport Settings
https://documentation.xmplus.dev/en/xmbox-server/transport-settings
Security Settings
https://documentation.xmplus.dev/en/xmbox-server/security-settings
XMPlus
Node Setup
How to setup server ad noes
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
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®
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…
UI nginx issue found after hours of debugging.
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;
}
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