mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
* server.basePath vs server.rewriteBasePath Moving content to make pronoun commentary applicable to correct nouns. Lined up to https://www.elastic.co/guide/en/kibana/6.8/settings.html * Apply suggestions from code review Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com> Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
17 lines
609 B
Text
17 lines
609 B
Text
[[development-basepath]]
|
|
== Considerations for basepath
|
|
|
|
In dev mode, {kib} by default runs behind a proxy which adds a random path component to its URL.
|
|
|
|
You can set this explicitly using <<server-basePath,`server.basePath`>>. This setting cannot end in a slash (/).
|
|
|
|
Use <<server-rewriteBasePath,`server.rewriteBasePath`>> to tell {kib} if it should remove the basePath from requests it receives, and to prevent a deprecation warning at startup.
|
|
|
|
If you want to turn off the basepath when in development mode, start {kib} with the `--no-base-path` flag
|
|
|
|
[source,bash]
|
|
----
|
|
yarn start --no-base-path
|
|
----
|
|
|
|
|