2021-12-07 18:32:48 +00:00
|
|
|
![](https://git.ucode.space/Phil/goshorly/badges/main/pipeline.svg)
|
2021-12-07 13:55:58 +00:00
|
|
|
# goshorly
|
|
|
|
|
2021-12-07 17:19:29 +00:00
|
|
|
An easy self-hosted Link shortner in Golang with Redis <3
|
|
|
|
|
2021-12-07 18:32:48 +00:00
|
|
|
Installation with Docker-Compose (no reverse proxy):
|
2021-12-07 17:19:29 +00:00
|
|
|
```bash
|
|
|
|
mkdir goshorly
|
|
|
|
cd goshorly
|
|
|
|
wget https://git.ucode.space/Phil/goshorly/-/raw/main/docker-compose.yml
|
|
|
|
docker-compose up -d
|
|
|
|
```
|
|
|
|
|
2021-12-07 18:32:48 +00:00
|
|
|
Installation with Docker-Compose (caddy as reverse proxy):
|
|
|
|
```bash
|
|
|
|
mkdir goshorly
|
|
|
|
cd goshorly
|
|
|
|
wget https://git.ucode.space/Phil/goshorly/-/raw/main/docker-compose-proxy.yml
|
|
|
|
mv docker-compose-proxy.yml docker-compose.yml
|
|
|
|
nano docker-compose.yml # Change the command line on caddy (Line 20) to your domain
|
|
|
|
docker-compose up -d
|
|
|
|
```
|