My cobbler.conf looks like this:

<VirtualHost *:8888>

    AliasMatch ^/cblr(?!/svc/)(.*)?$ "/var/www/cobbler$1"
    AliasMatch ^/cobbler_track(.*)?$ "/var/www/cobbler$1"
    Alias /cobbler /var/www/cobbler

    Alias /httpboot /var/lib/tftpboot/grub
    Alias /images /var/lib/tftpboot/grub/images

    ProxyPass /cblr/svc/ http://127.0.0.1:8000/

    <Directory "/var/www/cobbler">
        SetEnv VIRTUALENV
        Options Indexes FollowSymLinks
        Require all granted
    </Directory>

    <Directory /var/lib/tftpboot/grub>
            Options Indexes FollowSymLinks
            AllowOverride None
            AuthType None
            Require all granted
    </Directory>

    ProxyRequests off

    ProxyPass /cobbler_api http://127.0.0.1:25151/
    ProxyPassReverse /cobbler_api http://127.0.0.1:25151/

    BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On

    <Location /cblr>
        Require all granted
    </Location>

</VirtualHost>

For apache.  Pretty much what came out of the package with the exception of the update to the port.

-jeremy




On Thursday, Feb 23, 2023 at 4:29 PM, Me <jeremy@skidrow.la> wrote:
Upgraded to 3.4.0, now my server definitions are no longer retrievable.

http://192.168.210.1:8888/cblr/svc/op/autoinstall/system/dell2.fr1.blah.corp

results in 

Not Found

The requested URL was not found on this server.

Anything I missed in the transition?  

Thanks
-jeremy