On Jun 27, 2012 9:10 PM, "Zack Perry" <zack.perry@sbcglobal.net> wrote:
>
> Hi James,
>
> [...]
>
> > You'll need to add a vhost or other SSL (443) entry for that.
>
> Like below?
>   225  #   Per-Server Logging:
>   226  #   The home of a custom SSL log file. Use this when you want a
>   227  #   compact non-error SSL logfile on a virtual host basis.
>   228  CustomLog logs/ssl_request_log \
>   229            "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
>   230
>   231  </VirtualHost>
>   232  <VirtualHost _default_:443>
>   233
>   234  <LocationMatch "^/cobbler/web/*">
>   235      RewriteEngine on
>   236      RewriteRule ^(.*) https://%{SERVER_NAME}/%{REQUEST_URI} [R,L]
>   237  </LocationMatch>
>   238
>   239  </VirtualHost>
>
> No dice still :-(

Not quite. Take a look at the configs for 2.2.3 to see how it's done.  The rewrite rules go in the configuration for the :80 server, while the :443 defines the wsgi endpoint. Also it's cobbler_web, not cobbler/web.

I'd really recommend you look at using 2.2.3, since https is now the default in that version.