I currently have a cloud vm set up with Docker, which is running my personal website. One container running is a public facing Caddy server which acts as a reverse proxy to the other container. The other container is a BusyBox image running httpd (for it's small RAM usage) acting as a simple static file server.
I understand that busybox is intended for embedded use and that busybox httpd wasn't necessarily designed to be public facing. However, httpd is running behind a reverse proxy.
Are there any security concerns I should consider when using busybox httpd as a public file server? (as opposed to more popular http servers like nginx/apache)