You need to configure your webserver in order to being able to run EspoCRM. After that refresh the page.
You need to have mod_rewrite enabled. You can do it by running in the terminal:
sudo a2enmod rewrite
sudo service apache2 restart
You need to enable `.htaccess` usage in the apache configuration. Add the code:
<Directory /var/www/tm.uxmy.online>
AllowOverride All
</Directory>
It's recommended to configure the document root to look at the `public` directory and create an alias for the `client` directory. The code to add to the apache configuration:
DocumentRoot /var/www/tm.uxmy.online/public/
Alias /client/ /var/www/tm.uxmy.online/client/
And allow override for the `public` directory:
<Directory /var/www/tm.uxmy.online/public/>
AllowOverride All
</Directory>
See more details in the documentation.
You need to configure the document root to look at the `public` directory and create an alias for the `client` directory.
See more details in the documentation.