Installed OpenEMR 6 by following the wiki in a Debian 10 server. If i want to access the openemr is by hitting http://IP_address/openemr and here is the code
root@openemr: /etc/apache2/sites-available $ ll
total 16
-rw-r--r-- 1 root root 1332 Aug 8 10:47 000-default.conf
-rw-r--r-- 1 root root 6338 Aug 8 10:47 default-ssl.conf
-rw-r--r-- 1 root root 286 Jan 11 08:26 openemr.conf
root@openemr: /etc/apache2/sites-available $ more openemr.conf
<Directory "/var/www/html/openemr">
AllowOverride FileInfo
Require all granted
</Directory>
<Directory "/var/www/html/openemr/sites">
AllowOverride None
</Directory>
<Directory "/var/www/html/openemr/sites/*/documents">
Require all denied
</Directory>
root@openemr: /etc/apache2/sites-available $
i would like to omit the openemr suffix and simply by hitting the IP (http://IP_Address).
What are the changes needed, please?