Skip to content

Instantly share code, notes, and snippets.

View JvGinkel's full-sized avatar

Jethro JvGinkel

  • Its Hosted
  • Netherlands
View GitHub Profile
@JvGinkel
JvGinkel / gist:2bb3a760acca09c0091e6a266657928f
Created October 19, 2019 05:21 — forked from raphink/gist:bc4f43353c20417871cb
Puppet Proxy setup for the Puppet Server
<VirtualHost *:8140>
ServerName puppet-proxy
ServerAlias puppet-proxy.example.com
## SSL directives
SSLEngine on
SSLCertificateFile "/etc/puppet/ssl/certs/puppet-proxy.example.com.pem"
SSLCertificateKeyFile "/etc/puppet/ssl/private_keys/puppet-proxy.example.com.pem"
SSLCertificateChainFile "/etc/puppet/ssl/ca/ca_crt.pem"
SSLCACertificatePath "/etc/ssl/certs"