Created
July 8, 2025 12:13
-
-
Save Slach/8904c656ba5a5d024b3356418f15a2f7 to your computer and use it in GitHub Desktop.
disable /play endpoint in clickhouse
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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