mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* contributing guide -> asciidoc * Update docs/developer/contributing/index.asciidoc Co-authored-by: Peter Schretlen <peter.schretlen@gmail.com> * Update CONTRIBUTING.md Co-authored-by: Peter Schretlen <peter.schretlen@gmail.com> * Update docs/developer/best-practices/stability.asciidoc Co-authored-by: Peter Schretlen <peter.schretlen@gmail.com> * Update docs/developer/contributing/index.asciidoc Co-authored-by: Peter Schretlen <peter.schretlen@gmail.com> * address code review comments * Update docs/developer/contributing/development-documentation.asciidoc Co-authored-by: Peter Schretlen <peter.schretlen@gmail.com> * review comment updates * fix bad ref Co-authored-by: Peter Schretlen <peter.schretlen@gmail.com>
18 lines
588 B
Text
18 lines
588 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` in <<settings>>.
|
|
|
|
Use the server.rewriteBasePath setting to tell {kib} if it should remove the basePath from requests it receives, and to prevent a deprecation warning at startup. This setting cannot end in a slash (/).
|
|
|
|
If you want to turn off the basepath when in development mode, start {kib} with the `--no-basepath` flag
|
|
|
|
[source,bash]
|
|
----
|
|
yarn start --no-basepath
|
|
----
|
|
|
|
|
|
|