Skip to content

Commit 2bd7a8d

Browse files
update readme and release v1.1.0
1 parent 77bb5c3 commit 2bd7a8d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,22 @@ For now, it uses a live bouncer, which queries the Crowdsec API for decisions on
2121
Create a directory for the plugin if it doesn't exist:
2222

2323
```bash
24-
mkdir -p /opt/zoraxy/plugins/zoraxy_crowdsec_bouncer
24+
mkdir -p /opt/zoraxy/plugins/zoraxycrowdsecbouncer
2525
```
2626

27-
Then, copy the link to the latest binary from the [releases page](https://github.com/AnthonyMichaelTDM/zoraxy_crowdsec_bouncer/releases) and use `wget` to download it to the `zoraxy_crowdsec_bouncer` directory:
27+
Then, copy the link to the latest binary from the [releases page](https://github.com/AnthonyMichaelTDM/zoraxy_crowdsec_bouncer/releases) and use `wget` to download it to the `zoraxycrowdsecbouncer` directory:
2828

2929
```bash
3030
cd /opt/zoraxy/plugins/zoraxycrowdsecbouncer
3131
# wget <LINK_TO_LATEST_BINARY>
32-
wget https://github.com/AnthonyMichaelTDM/zoraxy_crowdsec_bouncer/releases/download/v1.0.5/zoraxycrowdsecbouncer
32+
wget https://github.com/AnthonyMichaelTDM/zoraxy_crowdsec_bouncer/releases/download/v1.1.0/zoraxycrowdsecbouncer
3333
chmod +x zoraxycrowdsecbouncer
3434
```
3535

3636
Do the same for the `config.yaml` file:
3737

3838
```bash
39-
wget https://github.com/AnthonyMichaelTDM/zoraxy_crowdsec_bouncer/releases/download/v1.0.5/config.yaml
39+
wget https://github.com/AnthonyMichaelTDM/zoraxy_crowdsec_bouncer/releases/download/v1.1.0/config.yaml
4040
```
4141

4242
### From Source
@@ -48,8 +48,8 @@ cd /opt/zoraxy/plugins
4848
git clone https://github.com/AnthonyMichaelTDM/zoraxy_crowdsec_bouncer.git zoraxycrowdsecbouncer
4949

5050
cd zoraxycrowdsecbouncer
51-
go build -o zoraxycrowdsecbouncer.so
52-
chmod +x zoraxycrowdsecbouncer.so
51+
go build
52+
chmod +x zoraxycrowdsecbouncer
5353
```
5454

5555
## Configuration

mod/info/info.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ const (
99
BOUNCER_TYPE = "zoraxy-crowdsec-bouncer"
1010

1111
VERSION_MAJOR = 1
12-
VERSION_MINOR = 0
13-
VERSION_PATCH = 5
12+
VERSION_MINOR = 1
13+
VERSION_PATCH = 0
1414

15-
VERSION_STRING = "1.0.5"
15+
VERSION_STRING = "1.1.0"
1616
)

0 commit comments

Comments
 (0)