aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2020-05-02 05:11:39 +0200
committerpacien2020-05-02 05:11:39 +0200
commitcb5e5ca86178eb27f342116eddb1a5fc157bbf2c (patch)
tree6deaea705a297b346cb686016c0d98affd2b920b
parent0e0b5b0ae44da7c1d67983dedd8f8d8d3516236f (diff)
downloadldgallery-cb5e5ca86178eb27f342116eddb1a5fc157bbf2c.tar.gz
doc: fix incorrect output path in quickstart guide
-rw-r--r--ldgallery-quickstart.7.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldgallery-quickstart.7.md b/ldgallery-quickstart.7.md
index 2154d20..b95c886 100644
--- a/ldgallery-quickstart.7.md
+++ b/ldgallery-quickstart.7.md
@@ -65,14 +65,14 @@ If the compiler was installed manually through the extraction of a pre-built arc
65<installation path>/ldgallery --with-viewer=<installation path>/viewer --input-dir <source gallery path> 65<installation path>/ldgallery --with-viewer=<installation path>/viewer --input-dir <source gallery path>
66``` 66```
67 67
68Running the command above produces a directory named "out" within the input gallery directory, which contains the compiled gallery and a web viewer, ready to be deployed on some web server. 68Running the command above produces a directory named "out" in the current directory, which contains the compiled gallery and a web viewer ready to be deployed on some web server.
69 69
70## Step 5: deploying the gallery 70## Step 5: deploying the gallery
71 71
72The content of the "out" directory generated at the previous step can now simply be uploaded to some web host, for example with an FTP client like FileZilla or through rsync/SSH with the following command: 72The content of the "out" directory generated at the previous step can now simply be uploaded to some web host, for example with an FTP client like FileZilla or through rsync/SSH with the following command:
73 73
74```sh 74```sh
75rsync -Prz <source gallery path>/out/* user@webhost:publication_path/ 75rsync -Prz out/* user@webhost:publication_path/
76``` 76```
77 77
78The target web host doesn't need to run any additional software besides a web server correctly configured to serve flat static files. 78The target web host doesn't need to run any additional software besides a web server correctly configured to serve flat static files.