diff --git a/cmd/http/views/index.hbs b/cmd/http/views/index.hbs index 387d5be..9a621ee 100644 --- a/cmd/http/views/index.hbs +++ b/cmd/http/views/index.hbs @@ -95,7 +95,8 @@ @@ -195,17 +196,17 @@ current page with the response HTML.

Please note that the exact method of displaying the response will depend on the specifics of your application and its user interface.

- -

Rate Limiting

-

To protect the service from potential denial-of-service (DoS) attacks, we have implemented rate limiting on our - server. This is done using a middleware in the Fiber framework.

-

The current configuration allows a maximum of 5 requests per client within a 30-minute window. If a client - exceeds this limit, further requests will be temporarily blocked until the rate falls below the limit.

-

This is achieved with the following configuration:

+

Rate Limiting

+

To protect the service from potential denial-of-service (DoS) attacks, we have implemented rate limiting on + our + server. This is done using a middleware in the Fiber framework.

+

The current configuration allows a maximum of 5 requests per client within a 30-minute window. If a client + exceeds this limit, further requests will be temporarily blocked until the rate falls below the limit.

+

This is achieved with the following configuration:

-
+        
     
         s.app.Use(limiter.New(limiter.Config{
             Max:               5,
@@ -215,8 +216,9 @@
     
 
-

Please be aware of this limit when integrating with our API to ensure a smooth user experience.

+

Please be aware of this limit when integrating with our API to ensure a smooth user experience.

+ \ No newline at end of file