freebsd-ports/www/mod_spdy/files/mod_spdy.conf.in
Steve Wills a411b2130c - Update www/mod_spdy to 0.9.2.1
- Since it synced to latest version of Chromium, we have to change the default compiler as www/chromium
- Note that clang is now the default compiler (GCC 4.6 is optionable)
- Added DEBUG option

PR:		ports/167926
Submitted by:	Masaki TAGAWA <masaki@club.kyutech.ac.jp> (maintainer)
2012-05-17 23:43:37 +00:00

24 lines
954 B
Text

LoadModule spdy_module %%APACHEMODDIR%%/mod_spdy.so
<IfModule spdy_module>
# Turn on mod_spdy. To completely disable mod_spdy, you can set
# this to "off".
SpdyEnabled on
# In order to support concurrent multiplexing of requests over a
# single connection, mod_spdy maintains its own thread pool in
# each Apache child process for processing requests. The default
# size of this thread pool is very conservative; you can override
# it with a larger value (as below) to increase concurrency, at
# the possible cost of increased memory usage.
#
#SpdyMaxThreadsPerProcess 30
# Memory usage can also be affected by the maximum number of
# simultaneously open SPDY streams permitted for each client
# connection. Ideally, this limit should be set as high as
# possible, but you can tweak it as necessary to limit memory
# consumption.
#
#SpdyMaxStreamsPerConnection 100
</IfModule>