From 96a7e3d8badaa27805051b99a2ff372a0c3058cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Mon, 17 Apr 2023 22:12:06 +0200 Subject: [PATCH] fix --- conf/config.toml | 2 +- conf/nginx.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/config.toml b/conf/config.toml index 61156b0..2f8db96 100644 --- a/conf/config.toml +++ b/conf/config.toml @@ -16,7 +16,7 @@ master_key = "__KEY__" # Sets the instance's master key, automatically protecting all routes except GET /health. # https://docs.meilisearch.com/learn/configuration/instance_options.html#master-key -# no_analytics = true +no_analytics = true # Deactivates Meilisearch's built-in telemetry when provided. # Meilisearch automatically collects data from all instances that do not opt out using this flag. # All gathered data is used solely for the purpose of improving Meilisearch, and can be deleted at any time. diff --git a/conf/nginx.conf b/conf/nginx.conf index 7ccc7fc..a02ac6e 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,7 +1,7 @@ #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent; location __PATH__/ { - proxy_pass http://127.0.0.1:__PORT__; + proxy_pass http://127.0.0.1:__PORT__; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;