I confirmed that MaxClients of httpd-custom.conf is 96.
Is the maximum connection 96 correct?
nodename % cat /var/etc/httpd-custom.conf
================================================================
# This is the secondary, writeable HTTP configuration file for user mode
# Data ONTAP.
#
# ATTENTION: Do NOT modify this file by hand unless directed-to by
# product support.
#
# NOTE: This file becomes the basis for the content in
# /var/etc/httpd-custom.conf during the boot process. The
# /usr/sbin/merge_http program handles the integration of
# customizations from an existing /var/etc/httpd-custom.conf
# into the new file.
# - basic runtime behavior
DOTAllowExternal On
ListenBacklog 511
StartServers 1
ServerLimit 1
ThreadLimit 96
ThreadsPerChild 96
MaxClients 96
MaxRequestsPerChild 0
TimeOut 300
# - error log verbosity
LogLevel notice
# - port configuration
# NOTE: these external ports are only accessible if DOTAllowExternal
# is set to 'On'.
Listen [::]:80 http
Listen [::]:443 https
# Ports for specific web services determined by the WSDB
DOTServiceListen wsman
# - SSL features
SSLProtocol -all +TLSv1 -SSLv3 -SSLv2
SSLVerifyDepth 10
SSLFIPS off
# - Mitigation for CVE-2007-6750
RequestReadTimeout header=20-40,MinRate=500 body=20,MinRate=500
================================================================