8000 Update Anteon selfhosted to 2.6.0 by fatihbaltaci · Pull Request #325 · getanteon/anteon · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update Anteon selfhosted to 2.6.0 #325

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ddosify_engine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ pkg install ddosify

### Windows exe from the [releases page](https://github.com/ddosify/ddosify/releases/tag/v1.0.6)

- Download *.zip file for your architecture. For example download ddosify version vx.x.x with amd64 architecture: ddosify_x.x.x.zip_windows_amd64
- Download *.zip file for your architecture. For example, download ddosify version vx.x.x with amd64 architecture: ddosify_x.x.x.zip_windows_amd64
- Unzip `ddosify_x.x.x_windows_amd64.zip`
- Open Powershell or CMD (Command Prompt) and change directory to unzipped folder: `ddosify_x.x.x_windows_amd64`
- Run ddosify:
Expand Down Expand Up @@ -136,7 +136,7 @@ This section aims to show you how to use Ddosify without deep dive into its deta

`ddosify -config config_examples/config.json`

Ddosify first sends *HTTP/2 POST* request to *https://getanteon.com/endpoint_1* using basic auth credentials *test_user:12345* over proxy *http://proxy_host.com:proxy_port* and with a timeout of *3* seconds. Once the response is received, HTTPS GET request will be sent to *https://getanteon.com/endpoint_2* along with the payload included in *config_examples/payload.txt* file with a timeout of 2 seconds. This flow will be repeated *20* times in *5* seconds and response will be written to *stdout*.
Ddosify first sends *HTTP/2 POST* request to *https://getanteon.com/endpoint_1* using basic auth credentials *test_user:12345* over proxy *http://proxy_host.com:proxy_port* and with a timeout of *3* seconds. Once the response is received, HTTPS GET request will be sent to *https://getanteon.com/endpoint_2* along with the payload included in *config_examples/payload.txt* file with a timeout of 2 seconds. This flow will be repeated *20* times in *5* seconds and response will be written to *stdout*.

5. ### Load test with Dynamic Variables (Parameterization)

Expand Down
2 changes: 1 addition & 1 deletion selfhosted/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.0
2.6.0
16 changes: 8 additions & 8 deletions selfhosted/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- anteon

frontend:
image: ddosify/selfhosted_frontend:4.0.0
image: ddosify/selfhosted_frontend:4.1.2
depends_on:
- backend
restart: always
Expand All @@ -24,7 +24,7 @@ services:
- anteon

backend:
image: ddosify/selfhosted_backend:3.2.7
image: ddosify/selfhosted_backend:3.2.9
depends_on:
- postgres
- influxdb
Expand All @@ -41,7 +41,7 @@ services:
- '8008:8008'

backend-celery-worker:
image: ddosify/selfhosted_backend:3.2.7
image: ddosify/selfhosted_backend:3.2.9
depends_on:
- postgres
- influxdb
Expand All @@ -58,7 +58,7 @@ services:
command: /workspace/start_scripts/start_celery_worker.sh

backend-celery-beat:
image: ddosify/selfhosted_backend:3.2.7
image: ddosify/selfhosted_backend:3.2.9
depends_on:
- postgres
- influxdb
Expand All @@ -75,7 +75,7 @@ services:
command: /workspace/start_scripts/start_celery_beat.sh

alaz-backend:
image: ddosify/selfhosted_alaz_backend:2.2.4
image: ddosify/selfhosted_alaz_backend:2.3.5
depends_on:
- postgres
- influxdb
Expand All @@ -92,7 +92,7 @@ services:
- '8009:8008'

alaz-backend-celery-worker-1:
image: ddosify/selfhosted_alaz_backend:2.2.4
image: ddosify/selfhosted_alaz_backend:2.3.5
depends_on:
- postgres
- influxdb
Expand All @@ -109,7 +109,7 @@ services:
command: /workspace/start_scripts/start_celery_worker.sh

alaz-backend-celery-worker-2:
image: ddosify/selfhosted_alaz_backend:2.2.4
image: ddosify/selfhosted_alaz_backend:2.3.5
depends_on:
- postgres
- influxdb
Expand All @@ -126,7 +126,7 @@ services:
command: /workspace/start_scripts/start_celery_worker.sh

alaz-backend-celery-beat:
image: ddosify/selfhosted_alaz_backend:2.2.4
image: ddosify/selfhosted_alaz_backend:2.3.5
depends_on:
- postgres
- influxdb
Expand Down
3 changes: 3 additions & 0 deletions selfhosted/nginx/default_reverseproxy.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ server {
http2_max_field_size 64k;
http2_max_header_size 512k;

error_log /var/log/nginx/error.log error;
access_log off;

location / {
proxy_pass http://frontend;
proxy_set_header Host $host;
Expand Down
Loading
0