开源实例之Ajenti
前言
Ajenti 是国外排名靠前的开源主机面板程序,官网的 slogon 是 "The admin panel your servers deserve"。
实例地址
实例配置
配置 | 描述 |
---|---|
系统 | Ubuntu 18.04 |
程序 | Ajenti 2.2.4 |
实例部署
Ajenti 支持 Debian/Ubuntu、RHEL/CentOS,官方提供了一键安装脚本。详见官网https://ajenti.org。
安装
curl https://raw.githubusercontent.com/ajenti/ajenti/master/scripts/install.sh | sudo bash -s -
配置
安装后需要做跨域设置。
域名配置
修改 /etc/ajenti/config.yml
,trusted_domains 填写当前域名。
trusted_domains: ['https://ajenti.dujun.eu.org']
Nginx 配置
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_set_header Origin http://$host;
proxy_redirect default;
}
实例体验
后记
本实例仅供参考,不定期重置数据。