Issue #3217 has been updated by Udo Waechter.
I have done this for apache+passenger+puppet-dashboard: `<VirtualHost __default__:443> Servername puppetmaster.example.com ServerAlias puppet.example.com ServerAdmin [email protected] DocumentRoot /var/www/puppet-dashboard/public/ SSLEngine on SSLCertificateFile <path-to-certs> SSLCertificateKeyFile <path-to-certs> SSLCACertificateFile <path-to-certs> <Directory /var/www/puppet-dashboard/public/> AuthType Basic AuthName "puppet restricted" AuthPAM_Enabled on AuthBasicAuthoritative off Require valid-user AuthUserFile /dev/null AuthGroupFile /dev/null Satisfy All </Directory> </VirtualHost> ` I also added an instance for localhost and not SSL, then copied puppet_dashboard.rb from "/var/www/puppet-dashboard/lib/puppet/" to RUBY_LIB and changed HOST and PORT to localhost and 80. Works fine. Have fun, udo. ---------------------------------------- Feature #3217: Ship a config.ru file for running Puppet-Dashboard under Passenger. http://projects.puppetlabs.com/issues/3217 Author: Nigel Kersten Status: Needs more information Priority: Normal Assigned to: Category: Target version: Keywords: Branch: If I have time I'll poke around and try to get one together, but it would be awesome if puppet-dashboard came with a simple dropin config.ru file for Passenger support so we could ditch webrick.... -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-bugs?hl=en.
