Skip to content
/ poxyapi Public

无为API管理系统,一款由PHP构建的API管控系统,支持API限定次数访问,API访问数据分析等API分析工具,帮助API管理员更好的管理API数据,实时监控API使用情况。

License

Notifications You must be signed in to change notification settings

wpbkj/poxyapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

欢迎使用无为API管控系统(未完成)

LOGO

简介

无为API管控系统由PHP+MySQL构建,开发人员:WPBKJ

wpbkj/无为API管控系统_PHP

相关功能正在开发中

联系开发者

WPBKJ: QQ:64345171 Email:[email protected]

使用

1、将仓库所有文件下载到服务器

2、完成站点配置(同其他PHP类CMS)

在服务器面板或使用PHP Server完成站点配置

注意:由于本程序在rewrite配置后可更好表现,请使用Nginx/Apache + PHP 便于配置rewrite

3、完成rewrite配置

rewrite配置:

Nginx Rewrite:

location / {
index index.html index.php;
if (-f $request_filename/index.html) {
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php) {
rewrite (.*) $1/index.php;
}
if (!-f $request_filename) {
rewrite (.*) /index.php;
}
}

Apache Rewrite:

RewriteRule ^(.*) $1/index.html
RewriteRule ^(.*) $1/index.php
RewriteRule ^(.*) index.php

4、安装程序

上述配置完成后直接访问网站首页进行数据库,网站默认配置等相关设置即可

安装界面截图

Info step1 step2 step3

5、体验

安装完后由于功能上不完善,本程序先预制了一个1-100随机数api,可供用户体验功能
文件地址:/user/module/rand.php
链接:
开启rewrite:/api/rand.api
未开启erwrite:/index.php/api/rand.api
返回示例:

{"status":"successfull","result":67}

About

无为API管理系统,一款由PHP构建的API管控系统,支持API限定次数访问,API访问数据分析等API分析工具,帮助API管理员更好的管理API数据,实时监控API使用情况。

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published