-
Edit the Apache httpd.conf file
-
Set the listen tag to the correct port number
for the service, for example:
Listen 443.
-
Activate the modules required for the service.
For more information about the list of modules, see the Program Directory.
-
Customize the <VirtualHost> tag.
- customize the reverse proxy server name and server alias, for example:
ServerName myserver
ServerAlias myserver - Activate SSL:
SSLEngine On
SSLProxyEngine On - Specify the SSL certificates definition, for example:
SSLCertificateFile "pathtoyourcertificate\myserver.cer"
SSLCertificateKeyFile "pathtoyourcertificate\myserver.key" - Add the following line to declare the reverse proxy configuration generated by the service installation:
The service installation creates the following file that already contains the necessary declarations for the reverse proxy: The contents of the CORS header declaration are also in this file.
|