mirror of
https://pagure.io/fedora-docs/quick-docs.git
synced 2024-11-24 05:22:42 +00:00
Updated tools to docsbuilder, fixed some typos.
This commit is contained in:
parent
6314822e27
commit
713d237893
6 changed files with 24 additions and 6 deletions
4
build.sh
4
build.sh
|
@ -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
|
||||
|
|
|
@ -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 ""
|
|
@ -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]
|
||||
|
|
|
@ -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
14
nginx.conf
Normal 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;
|
||||
}
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue