Disable the HTTPS redirect
By default, the pe-nginx
webserver listens on port
80. If you need to run your own service on port 80, you can use Hiera to disable the HTTPS redirect.
- Open your default Hiera
.yaml
file in a text editor.For information about Hiera data files, including file paths, refer to Configure settings with Hiera. - Add the
enable_http_redirect
parameter and set tofalse
. For example:puppet_enterprise::profile::console::proxy::http_redirect::enable_http_redirect: false
- Save the file and run
puppet agent -t
to compile the changes.