-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdocker-nginx.conf
151 lines (118 loc) · 4.46 KB
/
docker-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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
worker_processes auto;
error_log /dev/stdout warn;
# Use tmp for running with non-root
pid /tmp/nginx.pid;
events {
worker_connections 1024;
}
http {
# Use tmp for running with non-root
client_body_temp_path /tmp/client_temp;
proxy_temp_path /tmp/proxy_temp_path;
fastcgi_temp_path /tmp/fastcgi_temp;
uwsgi_temp_path /tmp/uwsgi_temp;
scgi_temp_path /tmp/scgi_temp;
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
access_log /dev/stdout;
keepalive_timeout 3000;
server {
listen 80;
listen [::]:80;
server_name localhost;
# auth_basic "basic";
# auth_basic_user_file /run/secrets/BASIC_AUTH_HTPASSWD;
location = /ingress-healthz {
access_log off;
return 200;
}
location /admin {
client_max_body_size 1k;
proxy_pass http://full-stack-template-admin:8080;
proxy_http_version 1.1;
# Remove /admin from path
rewrite ^/admin/?(.*) /$1 break;
proxy_redirect off;
# Headers
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
location / {
client_max_body_size 1k;
proxy_pass http://full-stack-template-client:8080;
proxy_http_version 1.1;
proxy_redirect off;
# Headers
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
location /api {
client_max_body_size 1m;
proxy_pass http://full-stack-template-server:8080;
proxy_http_version 1.1;
# Remove /api from path
rewrite ^/api/?(.*) /$1 break;
proxy_redirect off;
# Headers
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
location /docs {
client_max_body_size 1k;
proxy_pass http://full-stack-template-www:8080;
proxy_http_version 1.1;
# Remove /docs from path
rewrite ^/docs/?(.*) /$1 break;
proxy_redirect off;
# Headers
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
location /bucket {
client_max_body_size 20m;
proxy_pass http://full-stack-template-storage:9000;
proxy_http_version 1.1;
proxy_redirect off;
# Headers
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
# location /pgweb {
# client_max_body_size 20m;
#
# proxy_pass http://full-stack-template-pgweb:8080;
# proxy_http_version 1.1;
#
# proxy_redirect off;
#
# # Headers
# proxy_set_header X-Real-IP $remote_addr;
# proxy_set_header X-Forwarded-For $remote_addr;
# proxy_set_header Upgrade $http_upgrade;
# proxy_set_header Connection 'upgrade';
# proxy_set_header Host $host;
# proxy_cache_bypass $http_upgrade;
# }
}
}