-
Notifications
You must be signed in to change notification settings - Fork 9
/
nginx.conf.bak
86 lines (59 loc) · 1.96 KB
/
nginx.conf.bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
worker_processes 1;
events {
worker_connections 1024;
}
http {
sendfile on;
gzip on;
gzip_http_version 1.0;
gzip_proxied any;
gzip_min_length 500;
gzip_disable "MSIE [1-6]\.";
gzip_types text/plain text/xml text/css
text/comma-separated-values
text/javascript
application/x-javascript
application/atom+xml;
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
# Configuration containing list of application servers
upstream uwsgicluster {
server 127.0.0.1:8081;
# server 127.0.0.1:8081;
# ..
# .
}
# Configuration for Nginx
server {
# Running port
listen 80;
listen 443 default_server ssl;
server_name cocottributes.org;
ssl_certificate /root/coco_attributes/cocottributes.crt;
ssl_certificate_key /root/coco_attributes/cocottributes.key;
access_log /root/coco_attributes/access.log;
error_log /root/coco_attributes/error.log;
# Settings to by-pass for static files
location ^~ /static/ {
# Example:
# root /full/path/to/application/static/file/dir;
root /root/coco_attributes/app/;
include /etc/nginx/mime.types;
}
# Serve a static file (ex. favico) outside static dir.
location = /favico.ico {
root /root/coco_attributes/app;
}
# Proxying connections to application servers
location / {
include uwsgi_params;
uwsgi_pass uwsgicluster;
include /etc/nginx/mime.types;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
}
}
}