https://github.com/rialg/quick_link
Local proxy for accessing websites faster.
https://github.com/rialg/quick_link
browsers docker web
Last synced: 2 months ago
JSON representation
Local proxy for accessing websites faster.
- Host: GitHub
- URL: https://github.com/rialg/quick_link
- Owner: rialg
- Created: 2022-10-16T15:06:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-31T12:28:04.000Z (over 3 years ago)
- Last Synced: 2025-05-13T21:19:02.151Z (about 1 year ago)
- Topics: browsers, docker, web
- Language: Go
- Homepage:
- Size: 4.56 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quick Link
## Overview
Forwarding proxy based in a short hostname. If the root is `myquicklink`, then every HTTP access can be
done in the following way:
```
http://myquicklink/some/uri
```
## Prerequisite
* Docker
* Unix based machine (i.e. Linux)
## Install
> **Note**
> Please, replace `myquicklink` with the choosen hostname.
```
$ export QUICKLINK_ROOT="myquicklink" # <- your quick_link hostname
$ for file in $(find . -iname "*.go" -or -iname "*.bash"); do \
sed -i "s//${QUICKLINK_ROOT}/g" ${file}; \
done
$ sudo bash install.bash
```
## Remove
```
$ docker container stop quick_link
```