mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
11 lines
322 B
Plaintext
11 lines
322 B
Plaintext
server {
|
|
listen 80 default;
|
|
listen [::]:80 default ipv6only=on;
|
|
server_name localhost clickhouse.yandex clickhouse.yandex.ru clickhouse.yandex.com;
|
|
return 301 https://clickhouse.tech$request_uri;
|
|
}
|
|
server {
|
|
server_name test.clickhouse.yandex;
|
|
return 301 https://test.clickhouse.tech$request_uri;
|
|
}
|