HandlerMapping Class
The IIS handler mappings used to define which handler processes HTTP requests with certain extension. For example, it is used to configure php-cgi.exe process to handle all HTTP requests with >>*<<.php extension.
Constructor
HandlerMapping(*, extension: str | None = None, script_processor: str | None = None, arguments: str | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
extension
|
Requests with this extension will be handled using the specified FastCGI application. Default value: None
|
script_processor
|
The absolute path to the FastCGI application. Default value: None
|
arguments
|
Command-line arguments to be passed to the script processor. Default value: None
|
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Python