1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Better instructions

This commit is contained in:
Zack Scholl 2016-02-14 10:04:50 -05:00
parent dfe00ad570
commit 22e52cae2b

View File

@ -23,8 +23,9 @@ This is a self-contained wiki webserver that makes sharing easy and _fast_. You
# Install # Install
First [install Go](https://golang.org/doc/install). Then continue.
First [install Go](https://golang.org/doc/install). ## To access locally...
Then, if you want to host on your local network just do: Then, if you want to host on your local network just do:
@ -37,8 +38,15 @@ make
and then goto the address `http://LOCALIPADDRESS:8001/` and then goto the address `http://LOCALIPADDRESS:8001/`
## Production server ## To access from anywhere...
I recommend using `NGINX` as middleware, as it will do caching of the static files for you. There is an example `NGINX` block in `install/`. If you want to use SSL instead, follow the instructions in `letsencrypt/README.md`. To automatically install, on Raspberry Pi / Ubuntu / Debian system use:
For this you need to forward port 80 and [get a DNS for your external address](https://www.duckdns.org/). I recommend using `NGINX` as middleware, as it will do caching of the static files for you.
```bash
sudo apt-get install nginx
```
There is an example `NGINX` block in `install/`. If you want to use SSL instead, follow the instructions in `letsencrypt/README.md`. To automatically install, on Raspberry Pi / Ubuntu / Debian system use:
``` ```
git clone https://github.com/schollz/awwkoala.git git clone https://github.com/schollz/awwkoala.git