[pagure] Tweak the performance of httpd server
Today the pagure started to be unresponsive. After few hours of debugging we narrowed the issue to worker limit. We tweaked the value to something that should be more responsive and it helped. Here is the PR to make the change permanent. Thanks @gwmngilfen and @nphillip for help with that.
This commit is contained in:
parent
33e01feafc
commit
1459e74b5a
1 changed files with 3 additions and 2 deletions
|
@ -13,8 +13,9 @@ WSGIDaemonProcess paguredocs user=git group=git maximum-requests=1000 display-na
|
|||
|
||||
Protocols h2 h2c http/1.1
|
||||
|
||||
ServerLimit 1500
|
||||
MaxRequestWorkers 1500
|
||||
ServerLimit 100
|
||||
ThreadsPerChild 30
|
||||
MaxRequestWorkers 3000
|
||||
MaxConnectionsPerChild 1000
|
||||
|
||||
## Redirects http -> https
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue