Description of Aiko-Server
Aiko-Server Supports Various Panels (AikoPanel, V2AikoPanel, etc.)
An Xray-based back-end framework, supporting V2ay, Trojan, Shadowsocks protocols, extremely easily extensible and supporting multi-panel connection。
If you like this project, you can click the star + view in the upper right corner to track the progress of this project.
Disclaimer
This project is for my personal learning, development and maintenance only, I do not guarantee the availability and I am not responsible for any consequences resulting from using this software.
Featured
- Open source
This version depends on the happy mood
- Supports multiple protocols V2ray, Trojan, Shadowsocks.
- Supports new features like Vless and XTLS.
- Supports single connection to multiple boards and nodes without rebooting.
- Online IP support is limited
- Support node port level, user level rate limit.
- Simple and clear configuration.
- Modify the configuration to automatically restart the instance.
- Easy to compile and upgrade, can quickly update core version, support new Xray-core features.
- Support UDP and many other functions
Featured
Featured |
VMess |
Trojan |
Shadowsocks |
VLESS |
Get button info |
√ |
√ |
√ |
√ |
Get user information |
√ |
√ |
√ |
√ |
User traffic statistics |
√ |
√ |
√ |
√ |
Report server information |
√ |
√ |
√ |
√ |
Automatic registration of TLS certificates |
√ |
√ |
√ |
√ |
auto-renew tls certificate |
√ |
√ |
√ |
√ |
Number of people online |
√ |
√ |
√ |
√ |
Online User Restrictions |
√ |
√ |
√ |
√ |
Audit rules |
√ |
√ |
√ |
√ |
Node port speed limit |
√ |
√ |
√ |
√ |
User speed limit |
√ |
√ |
√ |
√ |
Custom DNS |
√ |
√ |
√ |
√ |
User interface support
Panel |
VMess |
Trojan |
Shadowsocks |
VLESS |
AikoPanel |
√ |
√ |
√ |
√ |
V2AikoPanel |
√ |
√ |
√ |
√ |
Command support
-
aiko-server
- Aiko-Server command
-
aiko-server x25519
- X25519 certificate management (Vless-Reality)
-
aiko-server cert
- Create TLS certificate management
Note: The command is not supported in the docker version and if you have Command New for it pls commit it
Software installation - release
wget --no-check-certificate -O Aiko-Server.sh https://raw.githubusercontent.com/AikoPanel/Aiko-Server-Script/master/install.sh && bash Aiko-Server.sh
Telegram
Note: Because I'm lazy to write documents, if anyone volunteers to write documents for aiko-server, please contact me (use English).
Docker
install Environment
Centos
yum install -y yum-utils
yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
yum install docker-ce docker-ce-cli containerd.io -y
systemctl start docker
systemctl enable docker
Ubuntu
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get install docker-ce docker-ce-cli containerd.io -y
systemctl start docker
systemctl enable docker
Docker-compose ( if you have using it )
curl -fsSL https://get.docker.com | bash -s docker
curl -L "https://github.com/docker/compose/releases/download/1.26.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
Config and cert file
- Edit your configuration file
aiko.yml
- Choose FORMAT config
yml
or yaml
- Run docker command
Config File
Nodes:
- PanelType: "AikoPanelv2" # Panel type: AikoPanel, AikoPanelv2
ApiConfig:
ApiHost: "http://127.0.0.1:667"
ApiKey: "123"
NodeID: 41
NodeType: V2ray # Node type: V2ray, Shadowsocks, Trojan
Timeout: 30 # Timeout for the api request
EnableVless: false # Enable Vless for V2ray Type
RuleListPath: # /etc/Aiko-Server/rulelist Path to local rulelist file
ControllerConfig:
DisableLocalREALITYConfig: false
EnableREALITY: false
REALITYConfigs:
Show: true
CertConfig:
CertMode: none # Option about how to get certificate: none, file
CertFile: /etc/Aiko-Server/cert/aiko_server.cert # Provided if the CertMode is file
KeyFile: /etc/Aiko-Server/cert/aiko_server.key
Docker installation
docker pull aikocute/aikocutehotme:latest && docker run --restart=always --name Aiko-Server -d \
-v ${PATH_TO_CONFIG}/:/etc/Aiko-Server/\
--network=host \
aikocute/aikocutehotme:latest
Docker-compose installation
git clone https://github.com/AikoPanel/Aiko-Server-Script.git
cd Aiko-Server-Script
- Edit your configuration file
aiko.yml
and docker-compose.yml
- Edit your docker-compose.yml file
- Run
docker-compose up -d
Stargazers over time