forked from HXSecurity/DongTai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf-1.8.0
53 lines (50 loc) · 1.59 KB
/
nginx.conf-1.8.0
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
#user nobody;
worker_processes auto;
events {
worker_connections 65535;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
#gzip on;
gzip on;
gzip_min_length 5k;
gzip_buffers 4 16k;
#gzip_http_version 1.0;
gzip_comp_level 3;
gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
gzip_vary on;
server {
listen 80;
server_name 0.0.0.0;
client_max_body_size 100M;
location / {
root /usr/share/nginx/html; #站点目录
index index.html index.htm; #添加属性。
try_files $uri $uri/ /index.html;
}
location /api/ {
proxy_read_timeout 60;
proxy_pass http://dongtai-server:8000/api/;
}
location /upload/ {
proxy_pass http://dongtai-server:8000/upload/;
}
location /openapi/ {
proxy_set_header X-real-ip $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header User-Agent $http_user_agent;
proxy_set_header X-Host $http_x_forwarded_host;
proxy_read_timeout 60;
proxy_pass http://dongtai-server:8000/;
}
location /log/ {
proxy_pass http://dongtai-logstash:8082/;
}
location = /50x.html {
root /usr/share/nginx/html;
}
}
}