Created a tutorial for how to install and set up geomyidae. Also I updated the … | |
git clone git://bitreich.org/gopher-tutorials/ git://enlrupgkhuxnvlhsf6lc3fziv5… | |
Log | |
Files | |
Refs | |
Tags | |
--- | |
commit 499cc10c4ef7c61d27a865a8440c0e461798b744 | |
parent f8892d1eb64eda23d643c88baae123480e803b7b | |
Author: jhumphrey <[email protected]> | |
Date: Mon, 25 Mar 2019 12:06:38 -0700 | |
Created a tutorial for how to install and set up geomyidae. Also I updated the … | |
Diffstat: | |
A install-geomyidae.txt | 39 +++++++++++++++++++++++++++++… | |
1 file changed, 39 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/install-geomyidae.txt b/install-geomyidae.txt | |
@@ -0,0 +1,39 @@ | |
+First, you need to install geomyidae. | |
+Check your package manager for geomyidae | |
+ | |
+On Linux: | |
+Check to see if geomyidae is in your package manager. | |
+If not issue the following commands | |
+ | |
+% git clone git://r-36.net/geomyidae | |
+% make | |
+% sudo make install | |
+ | |
+Now let's add a geomyidae user to your system: | |
+ | |
+% sudo useradd -r -s /sbin/nologin | |
+ | |
+Now let's start the server | |
+ | |
+% sudo geomyidae -u geomyidae | |
+ | |
+NOTE: if geomyidae is not in your root's $PATH then you may have to start it m… | |
+ | |
+On OpenBSD: | |
+% pkg_add geomyidae | |
+% rcctl enable geomyidae | |
+% rcctl start geomyidae | |
+ | |
+Next create the file /var/gopher/index.gph | |
+and put something in it. for example: | |
+ | |
+Hello, World! | |
+ | |
+Now issue: | |
+% sudo geomyidae | |
+(NOTE: if /usr/local/bin is not in root's path you may have to specify it manu… | |
+ | |
+Finally open a browser and navigate to gopher://localhost:70/ | |
+ | |
+Congratulations, you have set up a server! | |
+ |