nginx-config/public/templates/conf/nginxconfig.io/python_uwsgi.conf.html
Szekeres Bálint d4f3111c12 Python support
fixes #34
2018-12-02 21:36:18 +01:00

9 lines
364 B
HTML

# default uwsgi_params
include uwsgi_params;
# uwsgi settings
uwsgi_pass {{ !isPythonBackup() ? ((data.python_server[0] === '/' ? 'unix:' : '') + data.python_server) : 'python' }};
uwsgi_param Host $host;
uwsgi_param X-Real-IP $remote_addr;
uwsgi_param X-Forwarded-For $proxy_add_x_forwarded_for;
uwsgi_param X-Forwarded-Proto $http_x_forwarded_proto;