File diff d20f150f3cca → 150ae0c46506
roles/wsgi_website/templates/systemd_wsgi_website.service.j2
Show inline comments
 
@@ -9,7 +9,7 @@ Group={{ user }}
 
WorkingDirectory={{ home }}/code
 
ExecStart={{ home }}/virtualenv/bin/gunicorn --bind unix:/run/wsgi/{{ fqdn }}.sock {% if use_paste %}--paste {{home}}/code/{{ wsgi_application }}{% else %}{{ wsgi_application }}{% endif %}
 

	
 
{% for var, val in environment_variables.items() %}
 
{% for var, val in environment_variables | dictsort %}
 
Environment="{{ var }}={{ val }}"
 
{% endfor %}