All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pache-plugin.3.0.0.EmbJopr5.source-code.test_httpd.aug Maven / Gradle / Ivy

There is a newer version: 4.13.0
Show newest version
module Test_httpd =

let directives = "#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 120

Listen 80
Listen 0.0.0.0:8080
Listen [2001:db8::a00:20ff:fea7:ccea]:80 
Listen 192.170.2.1:8443 https 

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to \"Off\" to deactivate.
#
KeepAlive Off
"

let ifmodule = "
StartServers       8
MinSpareServers    5
MaxSpareServers   20
ServerLimit      256
MaxClients       256
MaxRequestsPerChild  4000
\n"

let loadModule = "# Example:
# LoadModule foo_module modules/mod_foo.so
#
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
LoadModule authn_file_module modules/mod_authn_file.so
"

test Httpd.lns get directives =
  {} {} {} { "Timeout" { "param" = "120" } } {} 
  { "Listen" { "param" = "80" } }
  { "Listen" { "param" = "0.0.0.0:8080" } }
  { "Listen" { "param" = "[2001:db8::a00:20ff:fea7:ccea]:80" } }
  { "Listen" { "param" = "192.170.2.1:8443" } { "param" = "https" } }
  {} {} {} {} {} { "KeepAlive" { "param" = "Off" } }

test Httpd.lns get ifmodule =
  { "
    Options Indexes FollowSymLinks

"

test Httpd.lns get 
    dir_test
    =
    { "




© 2015 - 2024 Weber Informatics LLC | Privacy Policy