Updated tools to docsbuilder, fixed some typos.

This commit is contained in:
Peter Boy 2023-08-09 12:52:15 +02:00
parent 6314822e27
commit 713d237893
6 changed files with 24 additions and 6 deletions

View file

@ -1,3 +1,5 @@
#!/bin/bash
echo "Deprecated. Use the builder.sh script instead"
echo "Deprecated. Use the docsbuilder.sh script instead"
sleep 2
./docsbuilder.sh -b

View file

@ -77,13 +77,13 @@ build () {
# Check whether podman is available, else faill back to docker
# which requires root.
if [ -f /usr/bin/podman ]; then
if [ -n "$(command -v podman)" ]; then
echo ""
echo "This build script is using Podman to run the build in an isolated environment."
echo ""
podman run --rm -it -v $(pwd):/antora:z $image $cmd --stacktrace
elif [ -f /usr/bin/docker ]; then
elif [ -n "$(command -v docker)" ]; then
echo ""
echo "This build script is using Docker to run the build in an isolated environment."
echo ""

View file

@ -74,7 +74,7 @@
** xref:using-yubikeys.adoc[Using Yubikeys with Fedora]
** xref:debug-systemd-problems.adoc[How to debug systemd problems]
** xref:enable-touchpad-click.adoc[How to enable touchpad click]
** xref:screencast-apps-comparison.adoc[ScreenCast Compasison of Applications and how to use them]
** xref:screencast-apps-comparison.adoc[ScreenCast Comparison of Applications and How to Use them]
** Jitsi
*** xref:getting_started_with_jitsi.adoc[Getting started with Jitsi]
*** xref:installing_jitsi.adoc[Installing Jitsi]

View file

@ -2,7 +2,7 @@
Ankursinha; Brunovernay; Hhlp
:revnumber: unknown
:revdate: 2021-02-14
:category: Multimedie
:category: Multimedia
:tags: How-to Screen-casting
//:page-aliases:

14
nginx.conf Normal file
View file

@ -0,0 +1,14 @@
server {
listen 80;
server_name localhost;
location / {
root /antora/public;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}

View file

@ -1,3 +1,5 @@
#!/bin/bash
echo "Deprecated. Use the builder.sh script instead"
echo "Deprecated. Use the docsbuilder.sh script instead"
sleep 2
./docsbuilder.sh -p