-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
65 lines (54 loc) · 1.63 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
server {
listen 80;
server_name flyem-assignment-dev.int.janelia.org flyem-assignment.janelia.org;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl;
server_name flyem-assignment-dev.int.janelia.org flyem-assignment.janelia.org;
ssl_certificate /etc/nginx/ssl/int.janelia.org.full.crt;
ssl_certificate_key /etc/nginx/ssl/int.janelia.org.key;
ssl_session_cache shared:SSL:10m;
#ssl_session_timeout 5m;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
client_body_buffer_size 10m;
client_max_body_size 4G;
proxy_send_timeout 300s;
proxy_read_timeout 300s;
send_timeout 300s;
gzip on;
gzip_disable "msie6";
gzip_comp_level 6;
gzip_min_length 1100;
gzip_buffers 16 8k;
gzip_proxied any;
gzip_types
text/plain
text/css
text/js
text/xml
text/javascript
application/javascript
application/x-javascript
application/json
application/xml
application/rss+xml
image/svg+xml;
location /static/ {
alias /api/static/;
}
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Host $http_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-Proto $scheme;
proxy_redirect off;
if (!-f $request_filename) {
proxy_pass http://app:8000;
break;
}
}
}