Skip to content

Instantly share code, notes, and snippets.

@dj-shin
Last active December 6, 2017 07:20
Show Gist options
  • Save dj-shin/ff2c961a04a25905c4feab79a0763d9a to your computer and use it in GitHub Desktop.
Save dj-shin/ff2c961a04a25905c4feab79a0763d9a to your computer and use it in GitHub Desktop.
uWSGI example file
upstream service {
server unix:///tmp/service.sock;
}
server {
listen 80;
server_name your_service_domain_name;
charset utf-8;
# If you have static files to serve from Django
location /static {
alias /home/your_user_name/service/static;
}
location / {
uwsgi_pass service;
include /home/your_user_name/service/uwsgi_params;
}
}
[uwsgi]
chdir=/home/your_user_name/service
module=your_service_name.wsgi:application
master=true
processes=10
vacuum=true
max-requests = 5000
socket = /tmp/service.sock
chmod-socket = 666
daemonize=/home/your_user_name/service/service.log
pidfile=/home/your_user_name/service/service.pid
uwsgi_param QUERY_STRING $query_string;
uwsgi_param REQUEST_METHOD $request_method;
uwsgi_param CONTENT_TYPE $content_type;
uwsgi_param CONTENT_LENGTH $content_length;
uwsgi_param REQUEST_URI $request_uri;
uwsgi_param PATH_INFO $document_uri;
uwsgi_param DOCUMENT_ROOT $document_root;
uwsgi_param SERVER_PROTOCOL $server_protocol;
uwsgi_param REQUEST_SCHEME $scheme;
uwsgi_param HTTPS $https if_not_empty;
uwsgi_param REMOTE_ADDR $remote_addr;
uwsgi_param REMOTE_PORT $remote_port;
uwsgi_param SERVER_PORT $server_port;
uwsgi_param SERVER_NAME $server_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment