Could anyone provide instructions on how to implement the below magento-proxy.conf file in the dispatcher on IIS Server.
How can we set the ProxyPass and ProxyPassReverse on the IIS server.
# If the Magento URL is on HTTPS we need to enable SSL
SSLProxyEngine on
LoadModule ssl_module modules/mod_ssl.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
Define magento_host http://localhost/magento
ProxyPass "/magento/graphql" "${magento_host}/graphql"
ProxyPassReverse "/magento/graphql" "${magento_host}/graphql"