element-call-Github/config/otel_dev/nginx_otel.conf

17 lines
440 B
Plaintext
Raw Normal View History

2023-03-20 21:53:07 +08:00
server {
listen 8080;
server_name localhost;
location / {
proxy_pass http://jaeger-all-in-one:16686/;
add_header Access-Control-Allow-Origin *;
if ($request_method = OPTIONS) {
add_header Access-Control-Allow-Origin *;
add_header Content-Type text/plain;
add_header Content-Length 0;
return 204;
}
}
}