Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Make temp dir and log dir writable by the uwsgi user (www-data on ubuntu)

Code Block
sudo mkdir -p /tmp/django_cache
sudo chown -R ni:www-data /tmp/django_cache
sudo chmod -R g+w /tmp/django_cache
  
sudo chown -R ni:www-data /var/opt/norduni/norduni/src/niweb/logs/
sudo chmod -R g+w /var/opt/norduni/norduni/src/niweb/logs/

...