-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathkt_gr.conf
292 lines (231 loc) · 8.21 KB
/
kt_gr.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
resolver 127.0.0.11 valid=2s;
server {
listen 80;
listen [::]:80;
server_name ebau.local;
rewrite ^/(.*)$ http://ember-ebau.local/$1 redirect;
}
server {
listen 80;
listen [::]:80;
server_name ebau-portal.local;
set $csp_use_google_fonts "true";
set $csp_portal_allow_inline_style "true";
set $csp_keycloak_url "http://ebau-keycloak.local";
include conf.d/csp_headers.inc;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_http_version 1.1;
proxy_redirect off;
client_max_body_size 60m;
location ~ ^/document-merge-service/ {
add_header Content-Security-Policy $csp_header_api;
proxy_pass http://document-merge-service:8000;
}
location ~ ^/alexandria/ {
add_header Content-Security-Policy $csp_header_api;
set $django http://django;
proxy_pass $django;
}
location ~ ^/api/ {
add_header Content-Security-Policy $csp_header_api;
set $django http://django;
proxy_pass $django;
}
location ~ ^/static/graphene_django {
add_header Content-Security-Policy $csp_header_api;
set $django http://django;
proxy_pass $django;
}
location ~ ^/static/ {
add_header Content-Security-Policy $csp_header_restricted;
set $django http://django;
proxy_pass $django;
}
location ~ ^/ech/ {
add_header Content-Security-Policy $csp_header_api;
set $django http://django;
proxy_pass $django;
}
location ~ ^/graphql/ {
# Graphql may have active graphiql in dev env, thus allow self-hosted CSS / images
add_header Content-Security-Policy $csp_header_django;
set $django http://django;
proxy_pass $django;
}
location ~ ^/zips/ {
add_header Content-Security-Policy $csp_header_restricted;
internal;
root /tmp/camac/tmpfiles;
}
location /maps/ {
add_header Content-Security-Policy $csp_header_django;
proxy_set_header Host map.geo.gr.ch;
proxy_ssl_server_name on;
proxy_redirect off;
proxy_hide_header Access-Control-Allow-Origin;
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Methods GET;
proxy_pass https://map.geo.gr.ch/;
}
location / {
add_header Content-Security-Policy $csp_header_portal;
set $ember http://ember-caluma-portal;
proxy_pass $ember;
}
}
server {
listen 80;
listen [::]:80;
set $csp_use_google_fonts "true";
set $csp_portal_allow_inline_style "true";
set $csp_keycloak_url "http://ebau-keycloak.local";
include conf.d/csp_headers.inc;
server_name ember-ebau.local;
chunked_transfer_encoding on;
proxy_set_header X-NginX-Proxy true;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_http_version 1.1;
proxy_redirect off;
proxy_buffering off;
client_max_body_size 60m;
location ~ ^/document-merge-service/ {
add_header Content-Security-Policy $csp_header_api;
proxy_pass http://document-merge-service:8000;
}
location ~ ^/alexandria/ {
add_header Content-Security-Policy $csp_header_api;
set $django http://django;
proxy_pass $django;
}
location ~ ^/api/ {
add_header Content-Security-Policy $csp_header_api;
set $django http://django;
proxy_pass $django;
}
location ~ ^/dav/ {
add_header Content-Security-Policy $csp_header_api;
set $django http://django;
proxy_pass $django;
}
location ~ ^/static/graphene_django {
add_header Content-Security-Policy $csp_header_api;
set $django http://django;
proxy_pass $django;
}
location ~ ^/static/ {
add_header Content-Security-Policy $csp_header_restricted;
set $django http://django;
proxy_pass $django;
}
location ~ ^/ech/ {
add_header Content-Security-Policy $csp_header_api;
set $django http://django;
proxy_pass $django;
}
location ~ ^/graphql/ {
add_header Content-Security-Policy $csp_header_django;
set $django http://django;
proxy_pass $django;
}
location ~ ^/django/ {
add_header Content-Security-Policy $csp_header_django;
set $django http://django;
proxy_pass $django;
}
location ~ ^/zips/ {
internal;
add_header Content-Security-Policy $csp_header_restricted;
root /tmp/camac/tmpfiles;
}
# GWR API
location /housing-stat/ {
add_header Content-Security-Policy "default-src 'none'";
proxy_set_header Host www-r.housing-stat.ch;
proxy_ssl_server_name on;
proxy_redirect off;
add_header Content-Security-Policy $csp_header_api;
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Methods 'GET, POST';
proxy_pass https://www-r.housing-stat.ch/;
}
# MinIO admin console
# https://min.io/docs/minio/linux/integrations/setup-nginx-proxy-with-minio.html
location /minio/ui {
add_header Content-Security-Policy $csp_header_restricted;
rewrite ^/minio/ui/(.*) /$1 break;
proxy_set_header 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_set_header X-NginX-Proxy true;
# This is necessary to pass the correct IP to be hashed
real_ip_header X-Real-IP;
proxy_connect_timeout 300;
# To support websockets in MinIO versions released after January 2023
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
chunked_transfer_encoding off;
proxy_pass http://minio:9090;
}
location /maps/ {
add_header Content-Security-Policy $csp_header_api;
proxy_set_header Host map.geo.gr.ch;
proxy_ssl_server_name on;
proxy_redirect off;
proxy_hide_header Access-Control-Allow-Origin;
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Methods GET;
proxy_pass https://map.geo.gr.ch/;
}
location / {
add_header Content-Security-Policy $csp_header_portal;
set $ember http://ember-ebau;
proxy_pass $ember;
}
location ~ ^/mailpit/ {
add_header Content-Security-Policy $csp_header_portal;
# https://mailpit.axllent.org/docs/configuration/proxy/
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
set $mailpit http://mailpit:8025;
proxy_pass $mailpit;
}
}
server {
listen 80;
listen [::]:80;
set $csp_use_google_fonts "true";
set $csp_portal_allow_inline_style "true";
set $csp_keycloak_url "http://ebau-keycloak.local";
include conf.d/csp_headers.inc;
server_name ebau-keycloak.local;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_http_version 1.1;
proxy_redirect off;
# https://keycloak.discourse.group/t/nginx-reverse-proxy-shows-502-for-keycloak-registration-form-submission/10550
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
location / {
add_header Content-Security-Policy $csp_header_keycloak;
set $keycloak http://keycloak:8080;
proxy_pass $keycloak;
if ($request_method = 'OPTIONS') {
# Tell client that this pre-flight info is valid for 20 days
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Headers' 'Authorization,Content-Type,x-csrftoken,x-requested-with';
add_header 'Access-Control-Allow-Methods' 'GET,OPTIONS';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}
}
}