-
Notifications
You must be signed in to change notification settings - Fork 81
I am unable to pull docker images
Just follow our Docker Setup guide.
How to install judge?
There are following 3 docker-compose
files that you can refrence:
If you are not familiar with docker then you can also check our manually deployment documentation. But this doc is outdated.
Can not access any links except the homepage
Just follow the following steps.
First, we need to activate mod_rewrite. It's available but not enabled with a clean Apache 2 installation.
$ sudo a2enmod rewrite
This will activate the module or alert you that the module is already enabled. To put these changes into effect, restart Apache.
$ sudo systemctl restart apache2
mod_rewrite is now fully enabled. In the next step we will set up an .htaccess file that we'll use to define rewrite rules for redirects.
Next, you will need to allow override for the directory where Aurora is installed.
<Directory /var/www/aurora>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
Lastly make sure that .htaccess
file is present in your directory.