I see. Now it works fine. Thanks.
I have 8 Binding sections. I think you can improve your configuration, by letting it inherit default settings. And in the specific Binding or VirtualHost Section, then you can overwrite your default settings. This should make it easier to read and configure.
But I have to look up what you introduced with variable settings.
Looking at your example
https://www.hiawatha-webserver.org/howto/example_configuration# BINDING SETTINGS
# A binding is where a client can connect to.
#
Binding {
Port = 80
MaxRequestSize = 128
TimeForRequest = 3,20
}
Binding {
Port = 443
MaxRequestSize = 128
TimeForRequest = 3,20
SSLcertFile = hiawatha.pem
}
You specified MaxRequestSize and TimeForRequest twice with the same values.
# BINDING SETTINGS
# Defaults for each section
BindingDefaults {
MaxRequestSize = 128
TimeForRequest = 3,20
}
# A binding is where a client can connect to.
#
Binding {
Port = 80
}
Binding {
Port = 443
SSLcertFile = hiawatha.pem
}
Binding {
Port = 8080
MaxRequestSize = 64
}