diff options
author | pacien | 2020-05-02 05:11:39 +0200 |
---|---|---|
committer | pacien | 2020-05-02 05:11:39 +0200 |
commit | cb5e5ca86178eb27f342116eddb1a5fc157bbf2c (patch) | |
tree | 6deaea705a297b346cb686016c0d98affd2b920b | |
parent | 0e0b5b0ae44da7c1d67983dedd8f8d8d3516236f (diff) | |
download | ldgallery-cb5e5ca86178eb27f342116eddb1a5fc157bbf2c.tar.gz |
doc: fix incorrect output path in quickstart guide
-rw-r--r-- | ldgallery-quickstart.7.md | 4 |
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 | ||
68 | Running 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. | 68 | Running 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 | ||
72 | The 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: | 72 | The 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 |
75 | rsync -Prz <source gallery path>/out/* user@webhost:publication_path/ | 75 | rsync -Prz out/* user@webhost:publication_path/ |
76 | ``` | 76 | ``` |
77 | 77 | ||
78 | The target web host doesn't need to run any additional software besides a web server correctly configured to serve flat static files. | 78 | The target web host doesn't need to run any additional software besides a web server correctly configured to serve flat static files. |