We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4030977 + 472d237 commit 52d53b3Copy full SHA for 52d53b3
1 file changed
conf/nginx/nginx.conf
@@ -46,6 +46,15 @@ upstream gnupstream {
46
error_page 404 /custom_404.html;
47
proxy_pass http://gsupstream;
48
}
49
+ location ~* ^/geoserver/[^/]+/wfs/?(\?.*)?$ {
50
+ set $args $args;
51
+ set $delimeter "";
52
+ if ($is_args) {
53
+ set $delimeter "&";
54
+ }
55
+ set $args "$args${delimeter}service=wfs";
56
+ proxy_pass http://gsupstream;
57
58
59
location /flower {
60
proxy_pass http://flupstream;
0 commit comments