Skip to content

HOW TO: Configure Apache to expose Pytomation over SSL.

texnofobix edited this page Sep 12, 2014 · 4 revisions

This is a high-level instruction to enable SSL for Pytomation Web via Apache

Requirements

  • Apache
  • mod_ssl
  • mod_proxy
  • Existing SSL certs

Edit Apache configuration

Either as part of your SSL host or SSL vhost add configuration similar to your setup

ProxyPass /pytomationweb/ http://localhost:8080/

ProxyPassReverse /pytomationweb/ http://localhost:8080/

If you are using an older version you may need to also expose the following as the web client is looking for the root location:

ProxyPass /api/ http://localhost:8080/api/

ProxyPassReverse /api/ http://localhost:8080/api/