<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Configurations on Jikkou</title><link>https://www.jikkou.io/docs/reference/api-server/configuration/</link><description>Recent content in Configurations on Jikkou</description><generator>Hugo</generator><language>en</language><atom:link href="https://www.jikkou.io/docs/reference/api-server/configuration/index.xml" rel="self" type="application/rss+xml"/><item><title>API Server</title><link>https://www.jikkou.io/docs/reference/api-server/configuration/server_configuration/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.jikkou.io/docs/reference/api-server/configuration/server_configuration/</guid><description>&lt;h2 id="running-server-on-a-specific-port">Running Server on a Specific Port&lt;/h2>
&lt;p>By default, the server runs on port &lt;code>28082&lt;/code>. However, you can set the server to run on a specific port:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" class="chroma">&lt;code class="language-yaml" data-lang="yaml">&lt;span class="line">&lt;span class="cl">&lt;span class="c"># ./etc/application.yaml&lt;/span>&lt;span class="w">
&lt;/span>&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w">&lt;/span>&lt;span class="nt">micronaut&lt;/span>&lt;span class="p">:&lt;/span>&lt;span class="w">
&lt;/span>&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="nt">server&lt;/span>&lt;span class="p">:&lt;/span>&lt;span class="w">
&lt;/span>&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="nt">port&lt;/span>&lt;span class="p">:&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="m">80&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="c"># Port used to access APIs&lt;/span>&lt;span class="w">
&lt;/span>&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w">
&lt;/span>&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w">&lt;/span>&lt;span class="nt">endpoints&lt;/span>&lt;span class="p">:&lt;/span>&lt;span class="w">
&lt;/span>&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="nt">all&lt;/span>&lt;span class="p">:&lt;/span>&lt;span class="w">
&lt;/span>&lt;/span>&lt;/span>&lt;span class="line">&lt;span class="cl">&lt;span class="w"> &lt;/span>&lt;span class="nt">port&lt;/span>&lt;span class="p">:&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="m">80&lt;/span>&lt;span class="w"> &lt;/span>&lt;span class="c"># Port used to access Health endpoints&lt;/span>&lt;span class="w">
&lt;/span>&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;h2 id="enabling-specific-extension-providers">Enabling Specific Extension Providers&lt;/h2>
&lt;p>By default, the server is configured to run only with the &lt;code>core&lt;/code> and &lt;code>kafka&lt;/code> extension providers.
However, you can enable (or disable) additional providers:&lt;/p></description></item><item><title>CLI Proxy Mode</title><link>https://www.jikkou.io/docs/reference/api-server/configuration/cli_proxy_mode/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.jikkou.io/docs/reference/api-server/configuration/cli_proxy_mode/</guid><description>&lt;h2 id="configuration">Configuration&lt;/h2>
&lt;h3 id="step-1-enable-proxy-mode">Step 1: Enable Proxy Mode&lt;/h3>
&lt;p>To enable proxy mode so that the CLI communicates directly with your API Server, add the following parameters to your
configuration:&lt;/p>
&lt;pre tabindex="0">&lt;code class="language-hocon" data-lang="hocon">jikkou {
 # Proxy Configuration
 proxy {
 # Specify whether proxy mode is enabled (default: false).
 enabled = true
 # URL of the API Server
 url = &amp;#34;http://localhost:28082&amp;#34;
 # Specifcy whether HTTP request debugging should be enabled (default: false)
 debugging = false
 # The connect timeout in millisecond (if not configured used ` default-timeout` ).
 connect-timeout = 10000
 # The read timeout in millisecond (if not configured used ` default-timeout` ).
 read-timeout = 10000
 # The write timeout in millisecond (if not configured used ` default-timeout` ).
 write-timeout = 10000
 # The default timeout (i.e., for read/connect) in millisecond (default: 10000)
 default-timeout = 10000
 # Security settings to authenticate to the API Server.
 security = {
 # For Token based Authentication.
 # access-token = &amp;#34;&amp;#34;
 # For Username/Password Basic-Authentication.
 # basic-auth = {
 # username = &amp;#34;&amp;#34;
 # password = &amp;#34;&amp;#34;
 # }
 }
 }
}
&lt;/code>&lt;/pre>&lt;h3 id="step-2-check-connection">Step 2: Check connection&lt;/h3>
&lt;p>When enabling Proxy Mode, Jikkou CLI provides the additional command &lt;code>server-info&lt;/code>. You can use it to verify the
connectivity with teh server.&lt;/p></description></item></channel></rss>