In file /etc/apache2/sites-available/000-default.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
ProxyPass / http://localhost:7000/
</VirtualHost>
When I type in the browser the address http://example.com I get a response from the application running on port 7000. What needs to be added in the settings so that when typing http://example.com in the browser, I would receive the contents of the /var/www/html/ directory, and when typing http://example.com/emby/, the response from the application on port 7000?