Package Details: zoraxy-bin 3.1.9-1

Git Clone URL: https://aur.archlinux.org/zoraxy-bin.git (read-only, click to copy)
Package Base: zoraxy-bin
Description: A general purpose HTTP reverse proxy and forwarding tool. Now written in Go!(Precompiled version)
Upstream URL: https://zoraxy.aroz.org/
Keywords: arozos bridge cluster-gateway golang homelab http-proxy port-forward proxy redirect reverse-proxy server subdomain tcp-proxy virtual-directory websocket-proxy zoraxy
Licenses: AGPL-3.0-only
Conflicts: zoraxy
Provides: zoraxy
Submitter: zxp19821005
Maintainer: zxp19821005
Last Packager: zxp19821005
Votes: 0
Popularity: 0.000000
First Submitted: 2025-01-10 07:13 (UTC)
Last Updated: 2025-03-03 02:28 (UTC)

Latest Comments

zxp19821005 commented on 2025-02-10 07:38 (UTC)

@fow0ryl See here: https://aur.archlinux.org/packages/zoraxy-git And you are the Co-maintainer.

fow0ryl commented on 2025-02-09 13:45 (UTC) (edited on 2025-02-09 13:46 (UTC) by fow0ryl)

Because I have needed some changes I have created a "git" PKGBUILD. But I'm unable to publish it here, since I did never use git and the arch linux manual is a desaster for noobs ... But here it is ... Maybe you are willing to support 2 versions ;)


# Maintainer: Mainframer <mainframer at gmx dot de>
_name=zoraxy
pkgname=${_name}-git
pkgver=3.1.7
pkgrel=1
pkgdesc='A general purpose HTTP reverse proxy and forwarding tool.'
arch=(
    'aarch64'
    'armv7h'
    'i686'
    'x86_64'
)
url="https://zoraxy.aroz.org/"
license=('AGPL-3.0-only')
depends=()
makedepends=('go')

provides=("${pkgname}")
conflicts=("${pkgname%-bin}")

source=("${_name}.service"
        'git+https://github.com/tobychui/zoraxy.git'
)

sha256sums=('d37d471ca413b6f7ec3ef0ac108a9002cc3f00c8651709f5891bedd9e24aa69b'
            'SKIP')

pkgver() {
    cd "${srcdir}/${_name}/src"
    git describe --tags --long | sed 's/^v//; s/-.*//'
    pkgrel=$(git describe --long --tags | cut -d'-' -f2)
}

build() {
    cd "${srcdir}/${_name}/src"

    go mod tidy
    go build
}

package() {
    cd ${pkgdir}

    # create package directorys
    install -dm0755 ${pkgdir}/opt/
    install -dm0755 ${pkgdir}/opt/${_name}
    install -dm0755 ${pkgdir}/opt/${_name}/tmp

    # install systemd service file & create users 
        install -Dm644 "${srcdir}/${_name}.service" -t "${pkgdir}/usr/lib/systemd/system"
        install -Dm755 "${srcdir}/${_name}/src/${_name}" "${pkgdir}/usr/bin/${_name}"
}

zxp19821005 commented on 2025-01-28 08:38 (UTC)

@fow0ryl Thanks for your feedback, added it.

fow0ryl commented on 2025-01-27 21:40 (UTC) (edited on 2025-01-27 21:41 (UTC) by fow0ryl)

Thank you for this pkgbuild.

But I would like to have some improvements. Because zoraxy creates files and directorys in cwd, I think that it is a good idea to create a specific directory. I'm using /opt/zoraxy. Of course this directory should be created by the pkgbuild.

Next is to create a systemd zoraxy.service file like I did and put it into /usr/lib/systemd/system. It's a good idea to pipe output of zoraxy to systemd journal. But you will net a dedicated log file location too. And of course a working directory. Maybe it's useful to create a dedicated user / group to enhance security. I'm using root for testing purposes for now.


[Unit]
Description=Zoraxy Reverse Proxy Server

# start not befor network is online
After=network-online.target
Wants=network-online.target

[Service]
Type=simple

# start zoraxy as root
User=root
Group=root

# folder where zoraxy config & runtime data are located
WorkingDirectory=/opt/zoraxy

# use absolute path for zoraxy always
# options:
# -fastgeoip=true               faster GeoIP-lookup, but more RAM ...
#                               faster GeoIP-lookup, but uses more RAM ...
# -log /var/log/zoraxy          log to file / dont create local log folder
# -port=:8008                   use port instead of defalut (8000)

ExecStart=/usr/bin/zoraxy -log /var/log/zoraxy -port=:8000 2>&1 | logger &
ExecStop=/usr/bin/kill "$MAINPID"


[Install]
WantedBy=multi-user.target