Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/datadome/datadome-nginx-demo
Integration demo for DataDome's Nginx module
https://github.com/datadome/datadome-nginx-demo
demo module nginx
Last synced: 5 days ago
JSON representation
Integration demo for DataDome's Nginx module
- Host: GitHub
- URL: https://github.com/datadome/datadome-nginx-demo
- Owner: DataDome
- License: apache-2.0
- Created: 2023-12-19T16:50:44.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-04-30T16:26:28.000Z (7 months ago)
- Last Synced: 2024-04-30T17:41:52.733Z (7 months ago)
- Topics: demo, module, nginx
- Language: Shell
- Homepage: https://docs.datadome.co/docs/nginx
- Size: 7.81 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DataDome Nginx demo
This repository provides an example of the DataDome Nginx module using Docker.
For additional information, please check our [public documentation](https://docs.datadome.co/docs/nginx).
## 1 - Configuration
Open the file `nginx.conf` and set your `datadome-server-side-key` (found inside your [DataDome Dashboard](https://app.datadome.co/dashboard/management/integrations)).
## 2 - Build
```
docker image build . -t datadome-nginx-demo-image
```## 3 - Run
```
docker run -d --rm --name datadome-nginx-demo-container -p 8282:80 datadome-nginx-demo-image
```## 4 - Test
```
curl -v http://localhost:8282/
```Your request was protected (the header `X-DataDome: protected` is present) and is shown in your Dashboard.
## 5 - Logs
```
docker logs -f datadome-nginx-demo-container
```## 6 - Stop
```
docker stop datadome-nginx-demo-container
```