coordination_grpc_proxy.conf 369 B

123456789101112131415161718
  1. server {
  2. listen 9310 http2;
  3. server_name coordination_grpc_proxy;
  4. #charset koi8-r;
  5. access_log logs/coordination.grpc.access.log main;
  6. location / {
  7. access_by_lua_file 'lua/router.lua';
  8. grpc_pass grpc://grpc_cluster;
  9. }
  10. error_page 500 502 503 504 /50x.html;
  11. location = /50x.html {
  12. root html;
  13. }
  14. }