Skip to content

Instantly share code, notes, and snippets.

@Mark24Code
Last active March 23, 2017 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mark24Code/9bc7faec7f6875d6d50aac46ecaf191c to your computer and use it in GitHub Desktop.
Save Mark24Code/9bc7faec7f6875d6d50aac46ecaf191c to your computer and use it in GitHub Desktop.
Nginx Conf 4 Gunicorn
worker_processes 1;
user mark24 mark24; # <--
# 'user nobody nobody;' for systems with 'nobody' as a group instead
pid /tmp/nginx.pid;
error_log /tmp/nginx.error.log;
events {
worker_connections 1024; # increase if you have lots of clients
accept_mutex off; # set to 'on' if nginx worker_processes > 1
# 'use epoll;' to enable for Linux 2.6+
# 'use kqueue;' to enable for FreeBSD, OSX
}
http {
include /etc/nginx/mime.types; # <--
# fallback in case we can't determine a type
default_type application/octet-stream;
access_log /tmp/nginx.access.log combined;
sendfile on;
upstream app_server {
# fail_timeout=0 means we always retry an upstream even if it failed
# to return a good HTTP response
# for UNIX domain socket setups
server unix:/tmp/gunicorn.sock fail_timeout=0;
# for a TCP configuration
# server 192.168.0.7:8000 fail_timeout=0;
}
server {
# if no Host match, close the connection to prevent host spoofing
listen 80 default_server;
return 444;
}
server {
# use 'listen 80 deferred;' for Linux
# use 'listen 80 accept_filter=httpready;' for FreeBSD
listen 80;
client_max_body_size 4G;
# set the correct host(s) for your site
server_name mark24code.me www.mark24code.me; # <--
keepalive_timeout 5;
# path for static files
root /home/mark24/Workplace/golf/be/app/static; # <--
location / {
# checks for static file, if not found proxy to app
try_files $uri @proxy_to_app;
}
location @proxy_to_app {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# enable this if and only if you use HTTPS
# proxy_set_header X-Forwarded-Proto https;
proxy_set_header Host $http_host;
# we don't want nginx trying to do something clever with
# redirects, we set the Host: header above already.
proxy_redirect off;
proxy_pass http://127.0.0.1:5000;
}
error_page 500 502 503 504 /500.html;
location = /500.html {
root /home/mark24/Workplace/golf/be/app/templates; # <--
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment