mirror of
https://github.com/CyberL1/holesail-proxy.git
synced 2025-04-03 06:28:37 -04:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
2cf1234534 | |||
d2a8181804 | |||
2762665529 |
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -40,6 +40,6 @@ jobs:
|
||||
- name: Create release
|
||||
uses: ncipollo/release-action@v1.15.0
|
||||
with:
|
||||
tag: ${{ needs.create-tag.outputs.new_tag }}
|
||||
tag: ${{ env.RELEASE_VERSION }}
|
||||
artifacts: holesail-proxy-${{ matrix.os }}-${{ matrix.arch }}.zip
|
||||
allowUpdates: true
|
||||
|
22
README.md
Normal file
22
README.md
Normal file
@ -0,0 +1,22 @@
|
||||
# Holesail reverse proxy
|
||||
A CLI for running holesail as a reverse proxy
|
||||
|
||||
# Instalation
|
||||
|
||||
> [!IMPORTANT]
|
||||
> Make sure you have holesail installed on your system
|
||||
|
||||
Windows:
|
||||
```
|
||||
irm https://raw.githubusercontent.com/CyberL1/holesail-proxy/main/scripts/get.ps1 | iex
|
||||
```
|
||||
|
||||
Linux:
|
||||
```
|
||||
curl -fsSL https://raw.githubusercontent.com/CyberL1/holesail-proxy/main/scripts/get.sh | sh
|
||||
```
|
||||
|
||||
# Usage
|
||||
|
||||
1. Do `holesail-proxy up`
|
||||
2. Go to `<hash>.localhost` and you'll be connected to the holesail connector after a moment
|
@ -2,6 +2,8 @@ package cmd
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"os/exec"
|
||||
"strings"
|
||||
"syscall"
|
||||
|
||||
@ -18,6 +20,11 @@ var downCmd = &cobra.Command{
|
||||
Short: "Stop running holesail processes",
|
||||
Args: cobra.NoArgs,
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
if _, err := exec.LookPath("holesail"); err != nil {
|
||||
fmt.Println("holesail command not found")
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
processes, err := process.Processes()
|
||||
if err != nil {
|
||||
fmt.Println(err)
|
||||
|
@ -24,6 +24,11 @@ var upCmd = &cobra.Command{
|
||||
Short: "Start holesail proxy",
|
||||
Args: cobra.NoArgs,
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
if _, err := exec.LookPath("holesail"); err != nil {
|
||||
fmt.Println("holesail command not found")
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
cmd.Println("Starting proxy")
|
||||
|
||||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user