mighttpd2 2.8.0 → 2.8.1
raw patch · 4 files changed
+7/−1 lines, 4 files
Files
- Config/Internal.hs +3/−0
- Mighty.hs +2/−0
- example.conf +1/−0
- mighttpd2.cabal +1/−1
Config/Internal.hs view
@@ -25,6 +25,7 @@ , opt_index_cgi = "index.cgi" , opt_status_file_dir = "/usr/local/share/mighty/status" , opt_connection_timeout = 30+ , opt_fd_cache_duration = 10 , opt_server_name = programName ++ "/" ++ programVersion , opt_worker_processes = 1 , opt_routing_file = Nothing@@ -44,6 +45,7 @@ , opt_index_cgi :: !String , opt_status_file_dir :: !String , opt_connection_timeout :: !Int+ , opt_fd_cache_duration :: !Int , opt_server_name :: !String , opt_worker_processes :: !Int , opt_routing_file :: !(Maybe FilePath)@@ -71,6 +73,7 @@ , opt_index_cgi = get "Index_Cgi" opt_index_cgi , opt_status_file_dir = get "Status_File_Dir" opt_status_file_dir , opt_connection_timeout = get "Connection_Timeout" opt_connection_timeout+ , opt_fd_cache_duration = get "Fd_Cache_Duration" opt_fd_cache_duration , opt_server_name = get "Server_Name" opt_server_name , opt_worker_processes = get "Worker_Processes" opt_worker_processes , opt_routing_file = Nothing
Mighty.hs view
@@ -236,6 +236,8 @@ , settingsOnClose = decrement stt , settingsTimeout = opt_connection_timeout opt , settingsHost = HostAny+ , settingsFdCacheDuration = opt_fd_cache_duration opt+ , settingsResourceTPerRequest = False } serverName = BS.pack $ opt_server_name opt cspec zdater = ClassicAppSpec {
example.conf view
@@ -14,5 +14,6 @@ Index_Cgi: index.cgi Status_File_Dir: /usr/local/share/mighty/status Connection_Timeout: 30 # seconds+Fd_Cache_Duration: 10 # seconds # Server_Name: Mighttpd/2.x.y Worker_Processes: 1
mighttpd2.cabal view
@@ -1,5 +1,5 @@ Name: mighttpd2-Version: 2.8.0+Version: 2.8.1 Author: Kazu Yamamoto <kazu@iij.ad.jp> Maintainer: Kazu Yamamoto <kazu@iij.ad.jp> License: BSD3