Skip to content

Commit 530b68e

Browse files
committed
Deploying to gh-pages from @ 622daf4 🚀
1 parent 5038b9b commit 530b68e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

unstable/deployment/container.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,12 @@ <h2 id="prequesits"><a class="header" href="#prequesits">Prequesits</a></h2>
196196
</li>
197197
</ul>
198198
<h2 id="fernglas-backend"><a class="header" href="#fernglas-backend">Fernglas Backend</a></h2>
199-
<pre><code class="language-sh">docker pull ghcr.io/wobcom/fernglas:fernglas-0.2.1
199+
<pre><code class="language-sh">docker pull ghcr.io/wobcom/fernglas:fernglas-0.2.2
200200
</code></pre>
201201
<p>You need to write a config file to specify Fernglas configuration. This needs to be put under <code>/config/config.yml</code> in the standard configuration.
202202
See the chapter on <a href="configuration/README.html">configuration</a> for more information on how to write the collectors configuration.</p>
203203
<h2 id="fernglas-frontend"><a class="header" href="#fernglas-frontend">Fernglas Frontend</a></h2>
204-
<pre><code class="language-sh">docker pull ghcr.io/wobcom/fernglas-frontend:fernglas-0.2.1
204+
<pre><code class="language-sh">docker pull ghcr.io/wobcom/fernglas-frontend:fernglas-0.2.2
205205
</code></pre>
206206
<p>By setting <code>serve_static: true</code> in the config, the backend will also serve the bundled frontend files from the same webserver as the API.</p>
207207
<p>You can take the fernglas-frontend image as base and serve the files with your own web server directly, if you want. The files need to be exposed at <code>/</code> of your domain, while the <code>/api/</code> path should be passed through to the API server.</p>

unstable/deployment/manual/backend.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ <h1 class="menu-title">Fernglas Manual</h1>
178178
<h1 id="backend"><a class="header" href="#backend">Backend</a></h1>
179179
<p>Download the statically linked binaries and place them at <code>/usr/local/bin/</code>. Make them executable.</p>
180180
<pre><code>$ sudo mkdir -p /usr/local/bin
181-
$ wget -O- https://github.com/wobcom/fernglas/releases/download/fernglas-0.2.1/fernglas-static-0.2.1-x86-64-linux.tar.xz | sudo tar -C /usr/local/bin -xJ
181+
$ wget -O- https://github.com/wobcom/fernglas/releases/download/fernglas-0.2.2/fernglas-static-0.2.2-x86-64-linux.tar.xz | sudo tar -C /usr/local/bin -xJ
182182
</code></pre>
183183
<p>File: /etc/fernglas/config.yml</p>
184184
<pre><code class="language-yaml">api:

unstable/deployment/manual/frontend.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ <h1 id="frontend-and-reverse-proxy"><a class="header" href="#frontend-and-revers
180180
<p>Alternatively download the prebuilt frontend tar.
181181
Extract it to <code>/usr/local/share/fernglas-frontend</code>.</p>
182182
<pre><code>$ sudo mkdir -p /usr/local/share/fernglas-frontend
183-
$ wget -O- https://github.com/wobcom/fernglas/releases/download/fernglas-0.2.1/fernglas-frontend-0.2.1.tar.xz | sudo tar -C /usr/local/share/fernglas-frontend -xJ
183+
$ wget -O- https://github.com/wobcom/fernglas/releases/download/fernglas-0.2.2/fernglas-frontend-0.2.2.tar.xz | sudo tar -C /usr/local/share/fernglas-frontend -xJ
184184
</code></pre>
185185
<p>Set up your reverse proxy / webserver.
186186
A configuration for nginx might look like this:</p>

unstable/print.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -264,20 +264,20 @@ <h2 id="prequesits"><a class="header" href="#prequesits">Prequesits</a></h2>
264264
</li>
265265
</ul>
266266
<h2 id="fernglas-backend"><a class="header" href="#fernglas-backend">Fernglas Backend</a></h2>
267-
<pre><code class="language-sh">docker pull ghcr.io/wobcom/fernglas:fernglas-0.2.1
267+
<pre><code class="language-sh">docker pull ghcr.io/wobcom/fernglas:fernglas-0.2.2
268268
</code></pre>
269269
<p>You need to write a config file to specify Fernglas configuration. This needs to be put under <code>/config/config.yml</code> in the standard configuration.
270270
See the chapter on <a href="deployment/configuration/README.html">configuration</a> for more information on how to write the collectors configuration.</p>
271271
<h2 id="fernglas-frontend"><a class="header" href="#fernglas-frontend">Fernglas Frontend</a></h2>
272-
<pre><code class="language-sh">docker pull ghcr.io/wobcom/fernglas-frontend:fernglas-0.2.1
272+
<pre><code class="language-sh">docker pull ghcr.io/wobcom/fernglas-frontend:fernglas-0.2.2
273273
</code></pre>
274274
<p>By setting <code>serve_static: true</code> in the config, the backend will also serve the bundled frontend files from the same webserver as the API.</p>
275275
<p>You can take the fernglas-frontend image as base and serve the files with your own web server directly, if you want. The files need to be exposed at <code>/</code> of your domain, while the <code>/api/</code> path should be passed through to the API server.</p>
276276
<div style="break-before: page; page-break-before: always;"></div><h1 id="manual-setup"><a class="header" href="#manual-setup">Manual Setup</a></h1>
277277
<div style="break-before: page; page-break-before: always;"></div><h1 id="backend"><a class="header" href="#backend">Backend</a></h1>
278278
<p>Download the statically linked binaries and place them at <code>/usr/local/bin/</code>. Make them executable.</p>
279279
<pre><code>$ sudo mkdir -p /usr/local/bin
280-
$ wget -O- https://github.com/wobcom/fernglas/releases/download/fernglas-0.2.1/fernglas-static-0.2.1-x86-64-linux.tar.xz | sudo tar -C /usr/local/bin -xJ
280+
$ wget -O- https://github.com/wobcom/fernglas/releases/download/fernglas-0.2.2/fernglas-static-0.2.2-x86-64-linux.tar.xz | sudo tar -C /usr/local/bin -xJ
281281
</code></pre>
282282
<p>File: /etc/fernglas/config.yml</p>
283283
<pre><code class="language-yaml">api:
@@ -314,7 +314,7 @@ <h2 id="fernglas-frontend"><a class="header" href="#fernglas-frontend">Fernglas
314314
<p>Alternatively download the prebuilt frontend tar.
315315
Extract it to <code>/usr/local/share/fernglas-frontend</code>.</p>
316316
<pre><code>$ sudo mkdir -p /usr/local/share/fernglas-frontend
317-
$ wget -O- https://github.com/wobcom/fernglas/releases/download/fernglas-0.2.1/fernglas-frontend-0.2.1.tar.xz | sudo tar -C /usr/local/share/fernglas-frontend -xJ
317+
$ wget -O- https://github.com/wobcom/fernglas/releases/download/fernglas-0.2.2/fernglas-frontend-0.2.2.tar.xz | sudo tar -C /usr/local/share/fernglas-frontend -xJ
318318
</code></pre>
319319
<p>Set up your reverse proxy / webserver.
320320
A configuration for nginx might look like this:</p>

unstable/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)