Skip to content

Instantly share code, notes, and snippets.

@Slach
Created July 8, 2025 12:13
Show Gist options
  • Select an option

  • Save Slach/8904c656ba5a5d024b3356418f15a2f7 to your computer and use it in GitHub Desktop.

Select an option

Save Slach/8904c656ba5a5d024b3356418f15a2f7 to your computer and use it in GitHub Desktop.
disable /play endpoint in clickhouse
<clickhouse>
<http_handlers>
<rule>
<url>/play</url>
<methods>GET</methods>
<handler>
<type>static</type>
<status>403</status>
<content_type>text/plain; charset=UTF-8</content_type>
<response_content></response_content>
</handler>
</rule>
<defaults/>
</http_handlers>
</clickhouse>
services:
clickhouse:
image: clickhouse/clickhouse-server:latest
volumes:
- ./disable_play.xml:/etc/clickhouse-server/config.d/disable_play.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment