-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf
87 lines (74 loc) · 1.8 KB
/
nginx.conf
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
87
daemon off;
worker_processes 2;
error_log /dev/console;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /dev/console;
sendfile on;
tcp_nopush on;
keepalive_timeout 30;
keepalive_requests 100000;
gzip on;
upstream unicorn {
server unix:/var/run/unicorn/unicorn.sock;
}
server {
listen 8080;
location /stats {
stub_status on;
}
}
server {
listen 80;
listen 443 ssl;
access_log /dev/console;
error_log /dev/console;
ssl_certificate /server.crt;
ssl_certificate_key /server.key;
location / {
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X_FORWARDED_PROTO https;
proxy_redirect off;
if (!-f $request_filename) {
proxy_pass http://unicorn;
break;
}
}
location ~* ^/assets/ {
# Per RFC2616 - 1 year maximum expiry
# http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
root /app/public;
expires 1y;
add_header Cache-Control public;
# Some browsers still send conditional-GET requests if there's a
# Last-Modified header or an ETag header even if they haven't
# reached the expiry date sent in the Expires header.
add_header Last-Modified "";
add_header ETag "";
break;
}
error_page 500 502 503 504 /500.html;
error_page 404 /404.html;
location = /500.html {
root /app/public;
}
location = /404.html {
root /app/public;
}
location = /404 {
root /app/public;
}
location = /favicon.ico {
root /app/public;
}
}
}