Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ricardoapaes/bore-server
Bore server with https and subdomain.
https://github.com/ricardoapaes/bore-server
Last synced: 11 days ago
JSON representation
Bore server with https and subdomain.
- Host: GitHub
- URL: https://github.com/ricardoapaes/bore-server
- Owner: ricardoapaes
- Created: 2022-12-11T10:37:55.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-30T11:00:20.000Z (12 days ago)
- Last Synced: 2024-12-30T12:17:59.302Z (12 days ago)
- Language: Dockerfile
- Size: 15.6 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [bore-server] Bore server with https and subdomain
Create http point and expose `bore-server` using a domain and https.
Thanks for this great http tunnel implementation.
https://github.com/ekzhang/bore## Environment Variables
```shell
BORE_HOST=bore.example.com # Host to expose using `nginx-proxy`.
BORE_SECRET=123456 # Secret to `bore-server`.
BORE_MIN_PORT=7000 # Minimal port to `bore-server`.
NGINX_PORT=80 # Port to expose nginx.
BORE_SERVER_HOST=bore-server # Optional: Use to change `bore-server` host.
```## How to start?
Once started and configured https://github.com/nginx-proxy/nginx-proxy and https://github.com/nginx-proxy/acme-companion.
and setting the environment variables inside `.env` run the following command.```shell
docker-compose up --build -d
```## How to access externally?
To access use the domain defined in `BORE_HOST` using the port as a subfolder, like:
Based on the `BORE_HOST` as "bore.example.com" and the port as 7000 the url would look like this: "https://bore.example.com/7000"