aaPanel_Kern
Thank you for your response. However, could you please provide an example using this configuration?:
<VirtualHost *:80>
ServerAdmin webmaster@example.com
DocumentRoot "/www/server/apache/htdocs"
ServerName bt.default.com
<Directory "/www/server/apache/htdocs">
SetOutputFilter DEFLATE
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
DirectoryIndex index.html
</Directory>
</VirtualHost>
Where exactly should I insert the code you provided?
Additionally, could you advise how to restrict access by IP if a Docker container is running on port 12345, a domain is configured, and proxying is set up from port 12345 to port 80? How can I ensure access is only allowed via the domain?
Thank you!