Lucee 7 + nginx + tomcat docker -- correct way to set up multiple sites?

What’s the proper way to set up multiple sites using the Lucee 7 docker image?
I create a docker compose file that maps a few things to the host, including a /www mapping where I intend to put various web apps, but I’m having trouble getting anything other than the Lucee default site to respond.

I’ve got one site set up to respond to port 80, hostname default.example.com with a root of /www/default and another using hostname test.example.com with a root of /www/test
Both hostnames respond, but they’re both serving up /var/www, which is not what’s in the /etc/nginx/conf.d/default.conf file

Suggestions?

TIA!

OS: ubuntu (docker 7.0.1.100 image with tomcat11 and nginx)
Java Version: 21
Tomcat Version: 11
Lucee Version: 7

Okay, nevermind! I figured it out.

Just needed to add virtual hosts to my tomcat server.xml config. duh.