VirtualHost
Middleware for virtual host mapping
The VirtualHost
middleware allows multiple services to be mapped
based on the org.http4s.headers.Host header of the org.http4s.Request.
- Source:
- VirtualHost.scala
Type members
Classlikes
Specification of the virtual host service and predicate.
Specification of the virtual host service and predicate.
The predicate receives the the Host header information with the port filled in, if possible, using the request Uri or knowledge of the security of the underlying transport protocol.
- Source:
- VirtualHost.scala
Value members
Concrete methods
- Source:
- VirtualHost.scala
Create a HostService that will match based on the exact host string (discounting case) and port, if the port is given. If the port is not given, it is ignored.
Create a HostService that will match based on the exact host string (discounting case) and port, if the port is given. If the port is not given, it is ignored.
- Source:
- VirtualHost.scala
Create a HostService that uses a regular expression to match the host string (which will be provided in lower case form) and port, if the port is given. If the port is not given, it is ignored.
Create a HostService that uses a regular expression to match the host string (which will be provided in lower case form) and port, if the port is given. If the port is not given, it is ignored.
- Source:
- VirtualHost.scala
Create a HostService that will match based on the host string allowing for wildcard matching of the lowercase host string and port, if the port is given. If the port is not given, it is ignored.
Create a HostService that will match based on the host string allowing for wildcard matching of the lowercase host string and port, if the port is given. If the port is not given, it is ignored.
- Source:
- VirtualHost.scala