I am getting 500 internal server error after installing all gems. Some people say it has to do with memory usage, but I am at 29%
This is my vhost
VirtualHost *:80>
ServerAdmin examplea@example.com
ServerName 0.0.0.0
# ServerAlias
DocumentRoot /var/www/sample_app/current/public
ErrorLog /var/www/sample_app/error.log
RailsEnv production
<Directory "/var/www/sample_app/current/public">
Options Indexes FollowSymLinks MultiViews
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Does the code above need to be in a specific location in the vhost? Is there something else I need to add?