I have a project which uses django as a backend, I wish to deploy it on hostinger, anyone has already done this before? I searched alot and didn't find much help, if someone already knows, please write me the steps to successfully deploy the django backend app to hostinger
I searched alot and didn't find someone who did this before
You can use Hostinger's VPS Plan.
After purchasing the VPS plan they will provide you the IP address of their VPS server then log in to the server using SSH.
After login to the VPS server, you can deploy your Django Application with Apache or any other web application.
For making these changes you will need a user with sudo permissions. Make a file in
/etc/apache2/sites-availabledirectory asdomain.conf.Below is an example of Apache file (domain.conf) configuration:
Consider making appropriate changes.
After making these changes restart your Apache service by
sudo service apache2 restart.