Question
Gunicorn service can't read environment variables
I am having some troubles to configure a Django app (using virtualenv) with Postgres, Nginx, and Gunicorn on Ubuntu 16.04.
Everything worked fine until I started setting some environment variables for some Django configuration variables. Ex.: SECRETKEY = os.environ[‘DJANGOSECRET_KEY’].
I have tried a lot of options like setting variables on virtualenv’s activate file, setting variables on ubuntu, and on gunicorn.service file but nothing is working.
Does anyone know how to work on this issue? How to set the environment variables?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
I could make it work by defining the variables on gunicorn command in the file /etc/systemd/system/gunicorn.service but I still think that it is not the best solution =/
Hi! Instead of adding the variables to the gunicorn command line, you could load them through a file:
<on gunicorn.service>
[Service]
…
EnvironmentFile=/pathto/somefilewith_secrets
…
This should make the trick.
(dont forget to create the file with those secrets)
Oh man - you saved me. Thanks!
Note that the format of EnvironmentFile needs to be:
Don’t forget to run
sudo systemctl restart gunicorn
Running
sudo systemctl restart gunicorn
won’t be enough. You will have to reload the daemon and restart the process after this by running