📄 highperformance-std.conf
字号:
# Ha, you're reading this config file looking for the easy way out!# "how do I make my apache server go really really fast??"# Well you could start by reading the /manual/misc/perf-tuning.html# page. But, we'll give you a head start.## This config file is small, it is probably not what you'd expect on a# full featured internet webserver with multiple users. But it's# probably a good starting point for any folks interested in testing# performance.## To run this config you'll need to use something like:# httpd -f @@ServerRoot@@/conf/highperformance.confListen 80ServerRoot @@ServerRoot@@DocumentRoot @@ServerRoot@@/htdocsUser nobody# If you're not on Linux, you'll probably need to change GroupGroup nobody<IfModule prefork.c>MaxClients 150StartServers 5MinSpareServers 5MaxSpareServers 10</IfModule><IfModule worker.c>StartServers 2MaxClients 150MinSpareThreads 25MaxSpareThreads 75 ThreadsPerChild 25MaxRequestsPerChild 0</IfModule># Assume no memory leaks at allMaxRequestsPerChild 0# it's always nice to know the server has startedErrorLog logs/error_log# Some benchmarks require logging, which is a good requirement. Uncomment# this if you need logging.#TransferLog logs/access_log<Directory /> # The server can be made to avoid following symbolic links, # to make security simpler. However, this takes extra CPU time, # so we will just let it follow symlinks. Options FollowSymLinks # Don't check for .htaccess files in each directory - they slow # things down AllowOverride None # If this was a real internet server you'd probably want to # uncomment these: #order deny,allow #deny from all</Directory># If this was a real internet server you'd probably want to uncomment this:#<Directory "@@ServerRoot@@/htdocs"># order allow,deny# allow from all#</Directory># OK that's enough hints. Read the documentation if you want more.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -