Tidak Ada Deskripsi

Thomas Dy 8e00fde391 Add self-contained server written in rust 8 tahun lalu
lib 03f8056f91 Fix casing of App.jsx 9 tahun lalu
rust-server 8e00fde391 Add self-contained server written in rust 8 tahun lalu
.gitignore 493685e510 Initial commit 9 tahun lalu
README.md 1c962cf5cb Add readme and sample config 8 tahun lalu
config.json.example 1c962cf5cb Add readme and sample config 8 tahun lalu
index.html 493685e510 Initial commit 9 tahun lalu
main.css 493685e510 Initial commit 9 tahun lalu
package.json fd82aa68b0 Force cortex version to 0.6.2 8 tahun lalu
server.js ce23045879 Fix prod serving of index.html 9 tahun lalu
webpack.config.js 84a1b0cff5 Add woff2 in loader config 8 tahun lalu

README.md

Cloudflare WebUI

This is a web frontend to the Cloudflare API. It mainly lets you manage DNS records, but it also lets you toggle development mode and purge the cache.

This was mainly built to work around Cloudflare only having multi-user support for enterprise. It's a simple frontend for the DNS settings and a simple webserver that handles making the actual requests to Cloudflare.

Usage

After cloning the repository, copy config.json.example to config.json and fill it with your account details and put the domains you want to manage in the whitelist array. Afterwards, run npm install then npm start and you should be able to manage your domains in localhost:8000.

Security

The server does not provide any form of authentication. It is meant to be run behind a reverse proxy such as nginx with basic auth, or behind something like oauth2_proxy.

The server never exposes your username and token to the clients, all requests to Cloudflare are made from the server. The server will also only allow API requests to domains specified in the whitelist. Domains not listed will be blocked even if your account owns it.