Recommended configs for WordPress?

demyx

New Member
#1
Hi everyone, I just started using OLS the other day and couldn't find any resources out there for recommend WordPress configurations for tuning, security, etc. For example on perClientConnLimit and lsrecaptcha, I have these:

Code:
perClientConnLimit {
    staticReqPerSec                     50
    dynReqPerSec                        25
    outBandwidth                        0
    inBandwidth                         0
    softLimit                           25
    hardLimit                           50
    blockBadReq                         1
    gracePeriod                         15
    banPeriod                           60
}

lsrecaptcha  {
    enabled                             1
    type                                1
    regConnLimit                        50
    sslConnLimit                        50
}
Any help would be appreciated, thank you! I'm also building this as a Docker image, so far everything works great. Once I finalize everything, I will be releasing it publicly to the Docker Hub.
 

demyx

New Member
#3
Thanks for the reply, I've decided to go with these after some testing:

Code:
perClientConnLimit {
    staticReqPerSec                     50
    dynReqPerSec                        50
    outBandwidth                        0
    inBandwidth                         0
    softLimit                           250
    hardLimit                           500
    blockBadReq                         1
    gracePeriod                         15
    banPeriod                           60
}

lsrecaptcha  {
    enabled                             1
    type                                2
    regConnLimit                        100
    sslConnLimit                        100
}
 
Top