基于django的一个简易并持续开发中的CloudFlare API面板(本面板需要配合Partner key使用,即将集成账号直接登陆方式),目前实现了部分免费的API功能包括部分统计功能,持续集成中.....
面板有两种语言选择,中文和英文,请在登陆页面在左上角浮标上提前设置,cookies会记录这一设置,直至过期和登出。注意:此面板只是短暂记录你的账号信息(邮箱,API key)用于API 的调用,同cookies生存时间相同。
由于作者的时间和前端知识有限,前端会可能有点简陋。但更欢迎指出更多的bug和需求,作者一心向学
demo(一个长期存在的展示): cf.github.ci
为了方便安装可以使用pip
simplejson uwsgi CloudFlare django-cors-headers
正在研究中...........
examples
以ubuntu为示例:
安装nginx
sudo apt install nginx
配置ngnix文件,进入nginx根目录下的site-enabled目录:
cd /etc/nginx/site-enabled
创建一个nginx配置文件(panel):
nano panel
配置设置如下:
server {
listen 80;
server_name 1.1.1.1; #你的ip或者站点域名
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location /{
include /etc/nginx/uwsgi_params;
uwsgi_pass 127.0.0.1:8001; #uwgis的反向代理接收端口
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location /static {
alias /home/panel/nano-cf-panel/static/; #静态文件路径
}
location /templates {
alias /home/panel/nano-cf-panel/templates/; #静态html模板路径
}
}
重新启动nginx:
nginx -s reload
uwsgi配置panel.ini文件(简单示例):
socket = 0.0.0.0:8001
chdir = /home/panel/nano-cf-panel
wsgi-file=mysite/wsgi.py
processes = 1
threads = 2
static-map=/static=static
设置CloudFlare Partner host_key (/mysite/settings.py):
################################################################
#CF_partner api key: host_key='xxxxxxxxxxxxxxxxxxxxxxxxxxxx'
host_key=''
################################################################
尝试通过uwsgi启动项目:
uwsgi --ini panel.ini
使用浏览器访问
以ubuntu为示例:
安装python3
sudo apt install python3
为了配置环境方便,安装pip3
apt install python3-pip
依此安装必要环境
pip3 install -r requestment.txt
进入项目根目录,目录结构如下:
│ .gitattributes
│ LICENSE
│ list.txt
│ manage.py
│ README.md
│
├─.idea
│ │
│ │
│ └─codeStyles
│
├─domain_manage
│ │
│ ├─tamplatetages
│ │
│ └─__pycache__
│
├─mysite
│ │
│ └─__pycache__
│
├─static
│ │
│ ├─fonts
│ ├─img
│ │
│ ├─jquery
│ │
│ ├─js
│ │
│ └─webfonts
│
└─templates
配置panel.ini文件(简单示例):
[uwsgi]
http = 0.0.0.0:80 #端口
chdir = PATH/nano-cf-panel #项目根目录
wsgi-file=mysite/wsgi.py #wsgi配置文件
processes = 4
threads = 2
static-map=/static=static #静态资源路径“static-map=/static”为配置变量
设置CloudFlare Partner host_key (/mysite/settings.py):
################################################################
#CF_partner api key: host_key='xxxxxxxxxxxxxxxxxxxxxxxxxxxx'
host_key=''
################################################################
尝试通过uwsgi启动项目:
uwsgi --ini panel.ini
使用浏览器访问
正在测试中......
如果你对本项目有兴趣,并关注后续的更多改进,可以通过以下方式给予更多的动力
This project is licensed under the MIT License - see the LICENSE file for details