Skip to content

Commit 97f50cc

Browse files
committed
Added demo link and screenshots in README
1 parent e60d666 commit 97f50cc

8 files changed

+62
-0
lines changed

README.md

+31
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
An authentication backend for the Nginx `ngx_http_auth_request_module` module.
44

55
[中文](https://github.com/iTraceur/nginx-http-auth/blob/main/README_CN.md)
6+
|
7+
[Demo](https://auth-demo.itraceur.com/), user/password: admin/auth-demo, this user has administrator privileges and can operate at will, and the data will be recovered every hour.
68

79
## usage
810
### Build from source
@@ -78,3 +80,32 @@ deny = test;demo # Users that are denied to access
7880
# cp conf/nginx.example.conf /etc/nginx/conf.d/nginx-http-auth.conf # and change it to suit your needs
7981
# service nginx reload
8082
```
83+
84+
## Screenshots
85+
### Auth login
86+
![auth login][auth-login]
87+
88+
### Auth captcha
89+
> Captcha is required after login failure.
90+
91+
![auth captcha][auth-captcha]
92+
93+
### User list
94+
![user lig][user-list]
95+
96+
### Add user
97+
![add user][add-user]
98+
99+
### Edit user
100+
![edit user][edit-user]
101+
102+
### Delete user
103+
![delete user][delete-user]
104+
105+
106+
[auth-login]: ./static/screenshot/auth-login.jpg
107+
[auth-captcha]: ./static/screenshot/auth-captcha.jpg
108+
[user-list]: ./static/screenshot/user-list.jpg
109+
[add-user]: ./static/screenshot/add-user.jpg
110+
[edit-user]: ./static/screenshot/edit-user.jpg
111+
[delete-user]: ./static/screenshot/delete-user.jpg

README_CN.md

+31
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
一个用于Nginx `ngx_http_auth_request_module` 模块的认证后端。
44

5+
[Demo演示](https://auth-demo.itraceur.com/), 用户/密码:admin/auth-demo,该用户有管理员权限,可随意操作,每个整点小时数据会进行重置。
6+
57
## 安装使用
68
### 从源码构建
79

@@ -74,3 +76,32 @@ deny = test;demo # 拒绝访问的用户
7476
# cp conf/nginx.example.conf /etc/nginx/conf.d/nginx-http-auth.conf # 按需要更改相应的配置
7577
# service nginx reload
7678
```
79+
80+
## 效果截图
81+
### 认证登录
82+
![认证登录][auth-login]
83+
84+
### 登录验证码
85+
> 登录失败后需要输入验证码。
86+
87+
![auth captcha][auth-captcha]
88+
89+
### 用户列表
90+
![用户列表][user-list]
91+
92+
### 添加用户
93+
![添加用户][add-user]
94+
95+
### 编辑用户
96+
![编辑用户][edit-user]
97+
98+
### 删除用户
99+
![删除用户][delete-user]
100+
101+
102+
[auth-login]: ./static/screenshot/auth-login.jpg
103+
[auth-captcha]: ./static/screenshot/auth-captcha.jpg
104+
[user-list]: ./static/screenshot/user-list.jpg
105+
[add-user]: ./static/screenshot/add-user.jpg
106+
[edit-user]: ./static/screenshot/edit-user.jpg
107+
[delete-user]: ./static/screenshot/delete-user.jpg

static/screenshot/add-user.jpg

405 KB
Loading

static/screenshot/auth-captcha.jpg

1.05 MB
Loading

static/screenshot/auth-login.jpg

1.02 MB
Loading

static/screenshot/delete-user.jpg

451 KB
Loading

static/screenshot/edit-user.jpg

402 KB
Loading

static/screenshot/user-list.jpg

513 KB
Loading

0 commit comments

Comments
 (0)