Installation on VPS hosting

✏️ Before installing, make sure mod_rewrite.c header is must enabled.

📁 Unzip the source file and move all evoting files at /home/user/ and on terminal run following command

cd /home/user/
unzip evoting.zip

⚙️ /home/user/evoting, you can configure Apache virtual host as follows (remember to point the DocumentRoot to the public folder of the source)

<VirtualHost *:80>
ServerName yoursite.com
DocumentRoot "/home/user/evoting/public"
Options Indexes FollowSymLinks
<Directory "/home/user/evoting/public">
	AllowOverride All
	Require all granted
</Directory>
</VirtualHost>

👨‍💻 Change the director/file’s owner to Apache’s running user (www-data for example), to make sure it has proper permission on your source files.

sudo chown www-data:www-data -R /home/user/evoting
sudo chmod 775 -R /home/user/evoting

After that kindly follow the steps below :

pageInstallation Step By Step

Last updated