agate

Simple gemini server for static files
git clone https://github.com/mbrubeck/agate.git
Log | Files | Refs | README

commit f02b2d19b823f0a785ca74e767745a669dbd8545
parent 93c4ab37480fe03ab2a41e4913bdb9232fc299b4
Author: skittlesvampir <62459226+skittlesvampir@users.noreply.github.com>
Date:   Sat, 10 Apr 2021 14:17:20 +0000

changed example domain in tools/docker/README.md

changed it from `my.gemini.space` to example.org so we won't get any trouble from the owner of this domain
Diffstat:
Mtools/docker/README.md | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/docker/README.md b/tools/docker/README.md @@ -45,9 +45,9 @@ This process will take a few minutes because all the rust modules have to be com ## start the docker container ``` -docker run -t -d --name agate -p 1965:1965 -d /var/www/gmi/:/gmi/ -d /var/www/gmi/.certificates/:/.certificates/ -e GEMINI_HOST=my.gemini.space -e GEMINI_LANG=en-US agate:latest +docker run -t -d --name agate -p 1965:1965 -d /var/www/gmi/:/gmi/ -d /var/www/gmi/.certificates/:/.certificates/ -e GEMINI_HOST=example.org -e GEMINI_LANG=en-US agate:latest ``` -You have to replace `/var/www/gmi/` with the folder where you'd like to have gemtext files and `/var/www/gmi/.certificates/` with the folder where you'd like to have your certificates stored. You also have to have to replace `my.gemini.space` with your domain name and if plan to speak in a different language than english in your gemini space than you should replace `en-US` with your countries language code (for example de-DE or fr-CA). +You have to replace `/var/www/gmi/` with the folder where you'd like to have gemtext files and `/var/www/gmi/.certificates/` with the folder where you'd like to have your certificates stored. You also have to have to replace `example.org` with your domain name and if plan to speak in a different language than english in your gemini space than you should replace `en-US` with your countries language code (for example de-DE or fr-CA). ## That's it! Now have agate running in a docker container!