File diff 360abd191aaf → 48fc6c243b24
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.iteritems() %}
 
{% for var, val in environment_variables.items() %}
 
Environment="{{ var }}={{ val }}"
 
{% endfor %}