Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
41c332365b | ||
|
|
d0b70acf39 | ||
|
|
ffd9327e3e | ||
|
|
40b81a5dc8 | ||
|
|
dc5582aa04 | ||
|
|
643ced23e9 | ||
|
|
64eee4ebc5 | ||
|
|
5212f586c7 |
12
.dockerignore
Normal file
12
.dockerignore
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
.git
|
||||||
|
data/
|
||||||
|
scripts/
|
||||||
|
branding/
|
||||||
|
README.md
|
||||||
|
LICENSE
|
||||||
|
nginx-security-headers.conf
|
||||||
|
docker-compose.yml
|
||||||
|
.dockerignore
|
||||||
|
.gitignore
|
||||||
|
app.js
|
||||||
|
i18n.js
|
||||||
98
.github/workflows/docker.yml
vendored
Normal file
98
.github/workflows/docker.yml
vendored
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
name: Build & Push Docker Image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE_NAME: xmrpay
|
||||||
|
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment: DOCKER
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Extract version from tag
|
||||||
|
id: version
|
||||||
|
run: echo "version=${GITHUB_REF_NAME#v}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- name: Inject version into source
|
||||||
|
run: |
|
||||||
|
sed -i "s|VERSION = '[^']*'|VERSION = '${{ steps.version.outputs.version }}'|" i18n.js
|
||||||
|
sed -i -E "s|(<span class=\"version\">v)[^<]*(</span>)|\1${{ steps.version.outputs.version }}\2|" index.html
|
||||||
|
|
||||||
|
- name: Minify JS
|
||||||
|
run: |
|
||||||
|
npm i -g terser
|
||||||
|
terser app.js -c -m -o app.min.js
|
||||||
|
terser i18n.js -c -m -o i18n.min.js
|
||||||
|
|
||||||
|
- name: Update SRI hashes
|
||||||
|
run: |
|
||||||
|
sri() { echo "sha384-$(openssl dgst -sha384 -binary "$1" | openssl base64 -A)"; }
|
||||||
|
|
||||||
|
H_STYLE=$(sri style.css)
|
||||||
|
H_QRCODE=$(sri lib/qrcode.min.js)
|
||||||
|
H_I18N=$(sri i18n.min.js)
|
||||||
|
H_JSPDF=$(sri lib/jspdf.min.js)
|
||||||
|
H_CRYPTO=$(sri lib/xmr-crypto.bundle.js)
|
||||||
|
|
||||||
|
# Update dynamic SRI in app.js and re-minify
|
||||||
|
sed -i -E \
|
||||||
|
-e "s|(jspdf\.min\.js.*integrity\s*=\s*')sha384-[A-Za-z0-9+/=]+|\1${H_JSPDF}|" \
|
||||||
|
-e "s|(xmr-crypto\.bundle\.js.*integrity\s*=\s*')sha384-[A-Za-z0-9+/=]+|\1${H_CRYPTO}|" \
|
||||||
|
app.js
|
||||||
|
terser app.js -c -m -o app.min.js
|
||||||
|
H_APP=$(sri app.min.js)
|
||||||
|
|
||||||
|
# Update index.html
|
||||||
|
sed -i -E \
|
||||||
|
-e "s|(style\.css[^\"]*\"\s+integrity=\")sha384-[A-Za-z0-9+/=]+|\1${H_STYLE}|" \
|
||||||
|
-e "s|(qrcode\.min\.js[^\"]*\"\s+integrity=\")sha384-[A-Za-z0-9+/=]+|\1${H_QRCODE}|" \
|
||||||
|
-e "s|(i18n\.min\.js[^\"]*\"\s+integrity=\")sha384-[A-Za-z0-9+/=]+|\1${H_I18N}|" \
|
||||||
|
-e "s|(app\.min\.js[^\"]*\"\s+integrity=\")sha384-[A-Za-z0-9+/=]+|\1${H_APP}|" \
|
||||||
|
index.html
|
||||||
|
|
||||||
|
# Update privacy.html
|
||||||
|
sed -i -E \
|
||||||
|
-e "s|(style\.css[^\"]*\"\s+integrity=\")sha384-[A-Za-z0-9+/=]+|\1${H_STYLE}|" \
|
||||||
|
privacy.html
|
||||||
|
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
tags: |
|
||||||
|
schmidt1024/${{ env.IMAGE_NAME }}:latest
|
||||||
|
schmidt1024/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.version }}
|
||||||
|
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:latest
|
||||||
|
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.version }}
|
||||||
|
cache-from: type=gha
|
||||||
|
cache-to: type=gha,mode=max
|
||||||
24
Caddyfile
Normal file
24
Caddyfile
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
{$DOMAIN:localhost} {
|
||||||
|
root * /srv
|
||||||
|
encode gzip
|
||||||
|
|
||||||
|
# Security headers
|
||||||
|
header {
|
||||||
|
Strict-Transport-Security "max-age=31536000; includeSubDomains; preload"
|
||||||
|
X-Content-Type-Options "nosniff"
|
||||||
|
X-Frame-Options "DENY"
|
||||||
|
Referrer-Policy "no-referrer"
|
||||||
|
Permissions-Policy "geolocation=(), microphone=(), camera=()"
|
||||||
|
Content-Security-Policy "default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:; font-src 'self'; connect-src 'self'; form-action 'none'; frame-ancestors 'none'; base-uri 'none'"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Short URL rewrite: /s/CODE -> s.php?c=CODE
|
||||||
|
@shorturl path_regexp short ^/s/([a-zA-Z0-9]+)$
|
||||||
|
rewrite @shorturl /s.php?c={re.short.1}
|
||||||
|
|
||||||
|
# PHP via FPM
|
||||||
|
php_fastcgi 127.0.0.1:9000
|
||||||
|
|
||||||
|
# Static files
|
||||||
|
file_server
|
||||||
|
}
|
||||||
38
Dockerfile
Normal file
38
Dockerfile
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
FROM php:8.3-fpm-alpine AS base
|
||||||
|
|
||||||
|
# Install PHP curl extension (needed for API proxies)
|
||||||
|
RUN apk add --no-cache caddy curl-dev \
|
||||||
|
&& docker-php-ext-install curl \
|
||||||
|
&& rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
|
# PHP-FPM tuning for low-memory VPS
|
||||||
|
RUN { \
|
||||||
|
echo '[www]'; \
|
||||||
|
echo 'pm = ondemand'; \
|
||||||
|
echo 'pm.max_children = 8'; \
|
||||||
|
echo 'pm.process_idle_timeout = 60s'; \
|
||||||
|
} > /usr/local/etc/php-fpm.d/zz-tuning.conf
|
||||||
|
|
||||||
|
# App files
|
||||||
|
COPY index.html privacy.html style.css sw.js favicon.svg s.php /srv/
|
||||||
|
COPY app.min.js /srv/app.min.js
|
||||||
|
COPY i18n.min.js /srv/i18n.min.js
|
||||||
|
COPY api/ /srv/api/
|
||||||
|
COPY lib/ /srv/lib/
|
||||||
|
COPY fonts/ /srv/fonts/
|
||||||
|
|
||||||
|
# Writable data directory
|
||||||
|
RUN mkdir -p /srv/data && chown www-data:www-data /srv/data
|
||||||
|
|
||||||
|
# Caddyfile
|
||||||
|
COPY Caddyfile /etc/caddy/Caddyfile
|
||||||
|
|
||||||
|
# Entrypoint: start PHP-FPM + Caddy
|
||||||
|
COPY docker-entrypoint.sh /usr/local/bin/
|
||||||
|
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
|
||||||
|
|
||||||
|
EXPOSE 80 443
|
||||||
|
|
||||||
|
VOLUME ["/srv/data", "/data/caddy"]
|
||||||
|
|
||||||
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
||||||
246
README.md
246
README.md
@@ -1,89 +1,111 @@
|
|||||||
# xmrpay.link — Monero Invoice Generator
|
# xmrpay — Monero Invoice Generator
|
||||||
|
|
||||||
> Private. Self-hosted. No accounts. No tracking. No bullshit.
|
> Create Monero payment requests in seconds. No accounts. No tracking. No KYC.
|
||||||
|
|
||||||
**[Live: xmrpay.link](https://xmrpay.link)** · **[Tor: mc6wfe...zyd.onion](http://mc6wfeaqc7oijgdcudrr5zsotmwok3jzk3tu2uezzyjisn7nzzjjizyd.onion)**
|
**[Demo: xmrpay.link](https://xmrpay.link)** — for real payments, self-host your own instance.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## What is this?
|
## Self-Host in 60 Seconds
|
||||||
|
|
||||||
**xmrpay.link** is a client-side web app that lets anyone create a professional Monero payment request in under 30 seconds — no account registration, no KYC, no custodial services.
|
You need a VPS with a domain pointing to it. Then:
|
||||||
|
|
||||||
Enter your address, the amount, an optional description — and get a wallet-native `monero:` URI, QR code, and PDF invoice. Short links are optional.
|
```bash
|
||||||
|
curl -sL https://xmrpay.link/install.sh | sh -s your-domain.com
|
||||||
|
```
|
||||||
|
|
||||||
### Architecture & Transparency
|
Done. HTTPS is automatic (via Caddy + Let's Encrypt).
|
||||||
|
|
||||||
xmrpay.link uses a **minimal backend** for the following specific purposes:
|
### Requirements
|
||||||
|
|
||||||
| Component | Where it runs | What the server sees |
|
| | Minimum | Recommended |
|
||||||
|-----------|--------------|---------------------|
|
|---|---|---|
|
||||||
| QR code generation | Browser only | Nothing |
|
| **CPU** | 1 vCPU | 2 vCPU |
|
||||||
| PDF invoice | Browser only | Nothing |
|
| **RAM** | 1 GB | 2 GB |
|
||||||
| Payment (TX) verification | Browser only | Nothing |
|
| **Disk** | 10 GB | 20 GB |
|
||||||
| Fiat exchange rates | Server (CoinGecko proxy) | Your IP address |
|
| **OS** | Any Linux with Docker | Ubuntu 22+, Debian 12+ |
|
||||||
| Short URL storage | Server | Invoice hash (address + amount + description), HMAC-signed |
|
| **Domain** | A-Record pointing to server IP | |
|
||||||
| Payment proof storage | Server | TX hash + amount — **not** your XMR address |
|
| **Cost** | ~3 EUR/month (Hetzner, Contabo, etc.) | |
|
||||||
|
|
||||||
**Self-hosting** eliminates trust in the public instance.
|
### Updates
|
||||||
**No short links** (use wallet URI / long `/#...` URL / QR code) = no shortlink lookup dependency.
|
|
||||||
|
|
||||||
### Trust Model (Important)
|
Watchtower runs alongside xmrpay and automatically pulls new images every 6 hours. No action needed.
|
||||||
|
|
||||||
- **Default mode:** wallet-native URI + QR (no shortlink lookup).
|
Manual update:
|
||||||
- **Short links are opt-in:** convenience feature with a trust trade-off.
|
|
||||||
- **Public instance caution:** if a server is fully compromised, first-access shortlink resolution can be manipulated.
|
|
||||||
- **Best security posture:** use wallet URI directly or self-host.
|
|
||||||
|
|
||||||
### Security Model
|
```bash
|
||||||
|
cd /opt/xmrpay && docker compose pull && docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
- **HMAC-signed short URLs:** Hashes are signed with a server-side secret. Clients verify the signature on load to detect tampering.
|
### Configuration
|
||||||
- **Address never stored:** Payment verification is cryptographic and runs client-side. The server never learns your XMR address.
|
|
||||||
- **Rate-limited APIs:** All write endpoints are rate-limited per IP.
|
|
||||||
- **Origin-restricted:** API endpoints reject cross-origin requests.
|
|
||||||
- **Clear scope:** HMAC improves integrity checks, but it is not a complete defense against a fully compromised server.
|
|
||||||
|
|
||||||
---
|
After install, the config is at `/opt/xmrpay/.env`:
|
||||||
|
|
||||||
## Why?
|
```bash
|
||||||
|
DOMAIN=your-domain.com
|
||||||
|
XMRPAY_IMAGE=schmidt1024/xmrpay:latest
|
||||||
|
```
|
||||||
|
|
||||||
| Solution | Problem |
|
### Docker Images
|
||||||
|
|
||||||
|
| Registry | Pull command |
|
||||||
|---|---|
|
|---|---|
|
||||||
| **BTCPay Server** | Requires own server, complex setup |
|
| Docker Hub | `docker pull schmidt1024/xmrpay:latest` |
|
||||||
| **NOWPayments, Globee** | Custodial, KYC, fees, third-party dependency |
|
| GitHub (GHCR) | `docker pull ghcr.io/schmidt1024/xmrpay:latest` |
|
||||||
| **Cake Wallet Invoice** | Mobile-only, no sharing without app |
|
|
||||||
| **MoneroPay** | Backend daemon required, developer-only |
|
|
||||||
| **Wallet QR** | No amount, no description, no confirmation |
|
|
||||||
|
|
||||||
**The gap:** There's no simple, privacy-respecting tool for freelancers, small merchants, and creators that works without setup and still allows payment confirmation.
|
### Manual Setup (without install script)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p /opt/xmrpay && cd /opt/xmrpay
|
||||||
|
|
||||||
|
curl -fsSL https://raw.githubusercontent.com/schmidt1024/xmrpay/master/docker-compose.yml -o docker-compose.yml
|
||||||
|
|
||||||
|
cat > .env <<EOF
|
||||||
|
DOMAIN=your-domain.com
|
||||||
|
XMRPAY_IMAGE=schmidt1024/xmrpay:latest
|
||||||
|
EOF
|
||||||
|
|
||||||
|
docker compose pull && docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
### Uninstall
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd /opt/xmrpay && docker compose down -v
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Why Self-Host?
|
||||||
|
|
||||||
|
**Any server you don't control can steal your funds.** The JavaScript loaded from a third-party instance can swap the address in the QR code or exfiltrate payment data. No HMAC, no SRI hash, no URL fragment can fully prevent this — because the server controls the code your browser runs.
|
||||||
|
|
||||||
|
Self-hosting eliminates this risk. You control the server, you control the code.
|
||||||
|
|
||||||
|
The public instance at [xmrpay.link](https://xmrpay.link) exists as a demo and for testing only.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
### Invoice Generation
|
- **Invoice generation** — XMR address, amount (XMR or fiat), description, payment deadline
|
||||||
- XMR address input with validation (standard, subaddress, integrated)
|
- **Wallet-native URI** — `monero:` URI with QR code, works with any Monero wallet
|
||||||
- Amount in XMR or fiat (EUR/USD/CHF/GBP/JPY/RUB/BRL via CoinGecko, auto-detected)
|
- **PDF invoice** — downloadable with QR, amount, fiat equivalent, deadline
|
||||||
- Description and payment deadline (7/14/30 days or custom)
|
- **Payment verification** — sender provides TX Hash + TX Key, cryptographic verification in browser
|
||||||
- Wallet-native `monero:` URI with copy action
|
- **Fiat conversion** — EUR/USD/CHF/GBP/JPY/RUB/BRL via CoinGecko, auto-detected from locale
|
||||||
- QR code for the same wallet-native URI
|
- **Short URLs** — optional, with explicit trust trade-off warning
|
||||||
- Optional short URL toggle (`/s/abc123`) with explicit trust trade-off hint
|
- **i18n** — English, German, French, Italian, Spanish, Portuguese, Russian
|
||||||
- PDF invoice download (with QR, amount, fiat equivalent, deadline)
|
- **Offline-capable** — Service Worker for offline use
|
||||||
- i18n (EN, DE, FR, IT, ES, PT, RU) with automatic browser detection
|
- **Privacy** — zero cookies, no analytics, no external scripts, self-hosted fonts
|
||||||
|
|
||||||
### Payment Verification (TX Proof)
|
### Security
|
||||||
- Sender provides TX Hash + TX Key from their wallet
|
|
||||||
- Cryptographic verification in the browser (no private keys needed)
|
|
||||||
- Payment status stored with the invoice (server stores proof, but not your address)
|
|
||||||
- Invoice link shows "Paid" badge after verification
|
|
||||||
- Standard and subaddress support
|
|
||||||
|
|
||||||
### Performance & Privacy
|
- **CSP** — Content Security Policy blocks exfiltration to foreign domains
|
||||||
- 100% Lighthouse score (Performance, Accessibility, Best Practices, SEO)
|
- **SRI** — Subresource Integrity on all scripts, verified on every load
|
||||||
- Offline-capable via Service Worker
|
- **HMAC-signed short URLs** — detect server-side tampering
|
||||||
- Self-hosted fonts (no Google Fonts dependency)
|
- **Rate-limited APIs** — all write endpoints rate-limited per IP
|
||||||
- Zero external tracking, no cookies
|
- **No private keys** — TX proof uses the sender's TX key, not the receiver's view key
|
||||||
- Dark mode, responsive design
|
- **Client-side crypto** — Ed25519 + Keccak-256 verification runs in browser
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -94,112 +116,24 @@ Frontend: HTML + Vanilla JS (no frameworks, no build step)
|
|||||||
Crypto: @noble/curves Ed25519 + Keccak-256 (30KB bundle)
|
Crypto: @noble/curves Ed25519 + Keccak-256 (30KB bundle)
|
||||||
QR: QRCode.js (client-side)
|
QR: QRCode.js (client-side)
|
||||||
PDF: jsPDF (client-side, lazy-loaded)
|
PDF: jsPDF (client-side, lazy-loaded)
|
||||||
Hosting: Static site + minimal PHP for short URLs and RPC proxy
|
|
||||||
Backend: Minimal PHP (URL shortener, rates proxy, proof storage)
|
Backend: Minimal PHP (URL shortener, rates proxy, proof storage)
|
||||||
Data: JSON files (no database), LocalStorage (client-side)
|
Data: JSON files (no database)
|
||||||
|
Hosting: Caddy (auto-HTTPS) + PHP-FPM in Alpine Docker
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Project Structure
|
## Development
|
||||||
|
|
||||||
```
|
|
||||||
xmrpay.link/
|
|
||||||
├── index.html # Single-page app
|
|
||||||
├── app.js / app.min.js # Main logic (URI builder, QR, fiat rates, TX proof)
|
|
||||||
├── i18n.js / i18n.min.js # Internationalization (DE, EN)
|
|
||||||
├── style.css # Dark theme, responsive, WCAG AA
|
|
||||||
├── sw.js # Service Worker (offline support)
|
|
||||||
├── favicon.svg # Monero coin logo
|
|
||||||
├── s.php # Short URL redirect
|
|
||||||
├── api/
|
|
||||||
│ ├── shorten.php # Short URL creation
|
|
||||||
│ ├── rates.php # CoinGecko proxy with server-side cache
|
|
||||||
│ ├── node.php # Monero RPC proxy (4-node failover)
|
|
||||||
│ └── verify.php # TX proof storage/retrieval
|
|
||||||
├── data/ # JSON storage (auto-generated)
|
|
||||||
├── fonts/ # Self-hosted Inter + JetBrains Mono
|
|
||||||
├── lib/
|
|
||||||
│ ├── qrcode.min.js # QR code generator
|
|
||||||
│ ├── jspdf.min.js # PDF generation (lazy-loaded)
|
|
||||||
│ └── xmr-crypto.bundle.js # Ed25519 + Keccak-256 (lazy-loaded)
|
|
||||||
├── README.md
|
|
||||||
└── LICENSE # MIT
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Invoice Lifecycle
|
|
||||||
|
|
||||||
**Optional Deadline:** When creating an invoice, you can set an expiration deadline (7/14/30 days or custom).
|
|
||||||
|
|
||||||
**Lazy Cleanup:** When a deadline is enabled, the short URL and payment proof are automatically deleted if accessed after expiration:
|
|
||||||
- Accessing an expired short URL returns **HTTP 410 Gone** and removes the entry
|
|
||||||
- Retrieving a proof for an expired invoice returns `verified: false` and cleans up the entry
|
|
||||||
- No background jobs or cron tasks required
|
|
||||||
|
|
||||||
**No deadline?** Invoices without a deadline persist indefinitely (no auto-cleanup).
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Self-Hosting
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://gitea.schmidt.eco/schmidt1024/xmrpay.link.git
|
git clone https://github.com/schmidt1024/xmrpay.git
|
||||||
cd xmrpay.link
|
cd xmrpay
|
||||||
# Serve with any web server that supports PHP
|
|
||||||
# No build tools, no npm, no database required
|
# Local Docker build
|
||||||
python3 -m http.server 8080 # For development (no PHP features)
|
docker build -t xmrpay:dev .
|
||||||
|
docker run -p 8080:80 -e DOMAIN=localhost xmrpay:dev
|
||||||
```
|
```
|
||||||
|
|
||||||
Requirements for full functionality:
|
|
||||||
- PHP 8.x with `curl` extension
|
|
||||||
- Nginx or Apache (for `/s/` short URL rewrites)
|
|
||||||
- Writable `data/` directory
|
|
||||||
|
|
||||||
### Production Deploy (Safe)
|
|
||||||
|
|
||||||
Use the provided deploy script to avoid deleting runtime files in `data/`:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
./scripts/deploy.sh
|
|
||||||
```
|
|
||||||
|
|
||||||
This script deploys with `rsync --delete` but explicitly excludes `data/`.
|
|
||||||
|
|
||||||
Hardening built in:
|
|
||||||
- Creates a remote pre-deploy backup archive of `data/`
|
|
||||||
- Keeps the latest N backups (`DEPLOY_BACKUP_KEEP`, default `14`)
|
|
||||||
- Supports dry runs (`DEPLOY_DRY_RUN=1`)
|
|
||||||
- Configurable via `scripts/.deploy.env`
|
|
||||||
|
|
||||||
Restore examples:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
./scripts/restore-data.sh --list
|
|
||||||
./scripts/restore-data.sh --latest
|
|
||||||
./scripts/restore-data.sh --file data-YYYYMMDD-HHMMSS.tgz
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Security
|
|
||||||
|
|
||||||
- **No private keys** — TX proof uses the sender's TX key, not the receiver's view key
|
|
||||||
- **Client-side crypto** — Ed25519 verification runs in the browser
|
|
||||||
- **No tracking** — zero cookies, no analytics, no external scripts
|
|
||||||
- **RPC proxy** — allowlisted methods only, rate-limited
|
|
||||||
- **Self-hostable** — run your own instance for full control
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Roadmap
|
|
||||||
|
|
||||||
- [ ] Embeddable `<iframe>` payment widget
|
|
||||||
- [ ] Invoice history (LocalStorage, CSV export)
|
|
||||||
- [ ] "Pay Button" generator (HTML snippet)
|
|
||||||
- [x] Auto-cleanup: Lazy-delete invoices after deadline expires
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|||||||
@@ -14,13 +14,19 @@ function send_security_headers(): void {
|
|||||||
|
|
||||||
// ── Origin verification ───────────────────────────────────────────────────────
|
// ── Origin verification ───────────────────────────────────────────────────────
|
||||||
function verify_origin(): void {
|
function verify_origin(): void {
|
||||||
$allowed = [
|
|
||||||
'https://xmrpay.link',
|
|
||||||
'http://mc6wfeaqc7oijgdcudrr5zsotmwok3jzk3tu2uezzyjisn7nzzjjizyd.onion',
|
|
||||||
];
|
|
||||||
$origin = $_SERVER['HTTP_ORIGIN'] ?? '';
|
$origin = $_SERVER['HTTP_ORIGIN'] ?? '';
|
||||||
// Allow same-origin (no Origin header from direct same-origin requests)
|
// Allow same-origin (no Origin header from direct same-origin requests)
|
||||||
if ($origin === '') return;
|
if ($origin === '') return;
|
||||||
|
|
||||||
|
// Dynamically allow the host this instance runs on
|
||||||
|
$scheme = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
|
||||||
|
$self_origin = $scheme . '://' . ($_SERVER['HTTP_HOST'] ?? '');
|
||||||
|
|
||||||
|
$allowed = [
|
||||||
|
$self_origin,
|
||||||
|
'https://xmrpay.link',
|
||||||
|
'http://mc6wfeaqc7oijgdcudrr5zsotmwok3jzk3tu2uezzyjisn7nzzjjizyd.onion',
|
||||||
|
];
|
||||||
if (!in_array($origin, $allowed, true)) {
|
if (!in_array($origin, $allowed, true)) {
|
||||||
http_response_code(403);
|
http_response_code(403);
|
||||||
echo json_encode(['error' => 'Origin not allowed']);
|
echo json_encode(['error' => 'Origin not allowed']);
|
||||||
|
|||||||
15
app.js
15
app.js
@@ -61,6 +61,21 @@
|
|||||||
let pdfLoaded = false;
|
let pdfLoaded = false;
|
||||||
let lastPaidData = null;
|
let lastPaidData = null;
|
||||||
|
|
||||||
|
// --- Self-host Banner ---
|
||||||
|
(function () {
|
||||||
|
var PUBLIC_HOSTS = ['xmrpay.link', 'mc6wfeaqc7oijgdcudrr5zsotmwok3jzk3tu2uezzyjisn7nzzjjizyd.onion'];
|
||||||
|
var banner = $('#selfHostBanner');
|
||||||
|
var dismiss = $('#dismissBanner');
|
||||||
|
if (!banner) return;
|
||||||
|
if (PUBLIC_HOSTS.indexOf(location.hostname) === -1) return;
|
||||||
|
if (sessionStorage.getItem('banner_dismissed')) return;
|
||||||
|
banner.hidden = false;
|
||||||
|
dismiss.addEventListener('click', function () {
|
||||||
|
banner.hidden = true;
|
||||||
|
sessionStorage.setItem('banner_dismissed', '1');
|
||||||
|
});
|
||||||
|
})();
|
||||||
|
|
||||||
// --- Currency Detection ---
|
// --- Currency Detection ---
|
||||||
function detectCurrency() {
|
function detectCurrency() {
|
||||||
var localeToCurrency = {
|
var localeToCurrency = {
|
||||||
|
|||||||
27
docker-compose.yml
Normal file
27
docker-compose.yml
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
services:
|
||||||
|
xmrpay:
|
||||||
|
image: ${XMRPAY_IMAGE:-schmidt1024/xmrpay:latest}
|
||||||
|
container_name: xmrpay
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "80:80"
|
||||||
|
- "443:443"
|
||||||
|
environment:
|
||||||
|
- DOMAIN=${DOMAIN:-localhost}
|
||||||
|
volumes:
|
||||||
|
- xmrpay-data:/srv/data
|
||||||
|
- caddy-data:/data/caddy
|
||||||
|
|
||||||
|
watchtower:
|
||||||
|
image: containrrr/watchtower
|
||||||
|
container_name: watchtower
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- WATCHTOWER_CLEANUP=true
|
||||||
|
- WATCHTOWER_POLL_INTERVAL=21600
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
xmrpay-data:
|
||||||
|
caddy-data:
|
||||||
8
docker-entrypoint.sh
Normal file
8
docker-entrypoint.sh
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Start PHP-FPM in background
|
||||||
|
php-fpm &
|
||||||
|
|
||||||
|
# Run Caddy in foreground
|
||||||
|
exec caddy run --config /etc/caddy/Caddyfile --adapter caddyfile
|
||||||
9
i18n.js
9
i18n.js
@@ -13,7 +13,7 @@ var I18n = (function () {
|
|||||||
|
|
||||||
var VERSION = '1.0.0';
|
var VERSION = '1.0.0';
|
||||||
|
|
||||||
var footer = 'Open Source · No Tracking · No KYC<br /><a href="https://gitea.schmidt.eco/schmidt1024/xmrpay.link" target="_blank" rel="noopener noreferrer">Source</a> · <a href="http://mc6wfeaqc7oijgdcudrr5zsotmwok3jzk3tu2uezzyjisn7nzzjjizyd.onion" title="Tor Hidden Service">Onion</a> · <a href="/privacy.html">Privacy & Terms</a><br /><span class="version">v' + VERSION + '</span>';
|
var footer = 'Open Source · No Tracking · No KYC<br /><a href="https://github.com/schmidt1024/xmrpay" target="_blank" rel="noopener noreferrer">Source</a> · <a href="http://mc6wfeaqc7oijgdcudrr5zsotmwok3jzk3tu2uezzyjisn7nzzjjizyd.onion" title="Tor Hidden Service">Onion</a> · <a href="/privacy.html">Privacy & Terms</a><br /><span class="version">v' + VERSION + '</span>';
|
||||||
|
|
||||||
var translations = {
|
var translations = {
|
||||||
en: {
|
en: {
|
||||||
@@ -41,6 +41,7 @@ var I18n = (function () {
|
|||||||
pdf_scan_qr: 'Scan QR code to pay',
|
pdf_scan_qr: 'Scan QR code to pay',
|
||||||
pdf_footer: 'Created with xmrpay.link',
|
pdf_footer: 'Created with xmrpay.link',
|
||||||
qr_hint: 'Click QR to save',
|
qr_hint: 'Click QR to save',
|
||||||
|
self_host_banner: 'This is a public demo. For real payments, <a href="https://github.com/schmidt1024/xmrpay#self-host-in-60-seconds">host your own instance</a> — it takes 60 seconds.',
|
||||||
footer: footer,
|
footer: footer,
|
||||||
aria_currency: 'Currency',
|
aria_currency: 'Currency',
|
||||||
label_share_link: 'Shareable link',
|
label_share_link: 'Shareable link',
|
||||||
@@ -92,6 +93,7 @@ var I18n = (function () {
|
|||||||
pdf_date: 'Datum',
|
pdf_date: 'Datum',
|
||||||
pdf_scan_qr: 'QR-Code scannen zum Bezahlen',
|
pdf_scan_qr: 'QR-Code scannen zum Bezahlen',
|
||||||
pdf_footer: 'Erstellt mit xmrpay.link',
|
pdf_footer: 'Erstellt mit xmrpay.link',
|
||||||
|
self_host_banner: 'Dies ist eine öffentliche Demo. Für echte Zahlungen <a href="https://github.com/schmidt1024/xmrpay#self-host-in-60-seconds">eigene Instanz hosten</a> — dauert 60 Sekunden.',
|
||||||
qr_hint: 'Klick auf QR zum Speichern',
|
qr_hint: 'Klick auf QR zum Speichern',
|
||||||
footer: footer,
|
footer: footer,
|
||||||
aria_currency: 'Währung',
|
aria_currency: 'Währung',
|
||||||
@@ -144,6 +146,7 @@ var I18n = (function () {
|
|||||||
pdf_date: 'Date',
|
pdf_date: 'Date',
|
||||||
pdf_scan_qr: 'Scanner le QR code pour payer',
|
pdf_scan_qr: 'Scanner le QR code pour payer',
|
||||||
pdf_footer: 'Créé avec xmrpay.link',
|
pdf_footer: 'Créé avec xmrpay.link',
|
||||||
|
self_host_banner: 'Ceci est une démo publique. Pour de vrais paiements, <a href="https://github.com/schmidt1024/xmrpay#self-host-in-60-seconds">hébergez votre propre instance</a> — ça prend 60 secondes.',
|
||||||
qr_hint: 'Cliquez sur le QR pour enregistrer',
|
qr_hint: 'Cliquez sur le QR pour enregistrer',
|
||||||
footer: footer,
|
footer: footer,
|
||||||
aria_currency: 'Devise',
|
aria_currency: 'Devise',
|
||||||
@@ -196,6 +199,7 @@ var I18n = (function () {
|
|||||||
pdf_date: 'Data',
|
pdf_date: 'Data',
|
||||||
pdf_scan_qr: 'Scansiona il QR per pagare',
|
pdf_scan_qr: 'Scansiona il QR per pagare',
|
||||||
pdf_footer: 'Creato con xmrpay.link',
|
pdf_footer: 'Creato con xmrpay.link',
|
||||||
|
self_host_banner: 'Questa è una demo pubblica. Per pagamenti reali, <a href="https://github.com/schmidt1024/xmrpay#self-host-in-60-seconds">ospita la tua istanza</a> — ci vogliono 60 secondi.',
|
||||||
qr_hint: 'Clicca sul QR per salvare',
|
qr_hint: 'Clicca sul QR per salvare',
|
||||||
footer: footer,
|
footer: footer,
|
||||||
aria_currency: 'Valuta',
|
aria_currency: 'Valuta',
|
||||||
@@ -248,6 +252,7 @@ var I18n = (function () {
|
|||||||
pdf_date: 'Fecha',
|
pdf_date: 'Fecha',
|
||||||
pdf_scan_qr: 'Escanear QR para pagar',
|
pdf_scan_qr: 'Escanear QR para pagar',
|
||||||
pdf_footer: 'Creado con xmrpay.link',
|
pdf_footer: 'Creado con xmrpay.link',
|
||||||
|
self_host_banner: 'Esta es una demo pública. Para pagos reales, <a href="https://github.com/schmidt1024/xmrpay#self-host-in-60-seconds">aloja tu propia instancia</a> — toma 60 segundos.',
|
||||||
qr_hint: 'Clic en QR para guardar',
|
qr_hint: 'Clic en QR para guardar',
|
||||||
footer: footer,
|
footer: footer,
|
||||||
aria_currency: 'Moneda',
|
aria_currency: 'Moneda',
|
||||||
@@ -300,6 +305,7 @@ var I18n = (function () {
|
|||||||
pdf_date: 'Data',
|
pdf_date: 'Data',
|
||||||
pdf_scan_qr: 'Digitalizar QR para pagar',
|
pdf_scan_qr: 'Digitalizar QR para pagar',
|
||||||
pdf_footer: 'Criado com xmrpay.link',
|
pdf_footer: 'Criado com xmrpay.link',
|
||||||
|
self_host_banner: 'Esta é uma demo pública. Para pagamentos reais, <a href="https://github.com/schmidt1024/xmrpay#self-host-in-60-seconds">hospede sua própria instância</a> — leva 60 segundos.',
|
||||||
qr_hint: 'Clique no QR para guardar',
|
qr_hint: 'Clique no QR para guardar',
|
||||||
footer: footer,
|
footer: footer,
|
||||||
aria_currency: 'Moeda',
|
aria_currency: 'Moeda',
|
||||||
@@ -352,6 +358,7 @@ var I18n = (function () {
|
|||||||
pdf_date: 'Дата',
|
pdf_date: 'Дата',
|
||||||
pdf_scan_qr: 'Сканируйте QR для оплаты',
|
pdf_scan_qr: 'Сканируйте QR для оплаты',
|
||||||
pdf_footer: 'Создано с помощью xmrpay.link',
|
pdf_footer: 'Создано с помощью xmrpay.link',
|
||||||
|
self_host_banner: 'Это публичная демо-версия. Для реальных платежей <a href="https://github.com/schmidt1024/xmrpay#self-host-in-60-seconds">разверните свой экземпляр</a> — это займёт 60 секунд.',
|
||||||
qr_hint: 'Нажмите на QR для сохранения',
|
qr_hint: 'Нажмите на QR для сохранения',
|
||||||
footer: footer,
|
footer: footer,
|
||||||
aria_currency: 'Валюта',
|
aria_currency: 'Валюта',
|
||||||
|
|||||||
@@ -12,6 +12,11 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
<div class="self-host-banner" id="selfHostBanner" hidden>
|
||||||
|
<span data-i18n-html="self_host_banner">This is a public demo. For real payments, <a href="https://github.com/schmidt1024/xmrpay#self-host-in-60-seconds">host your own instance</a> — it takes 60 seconds.</span>
|
||||||
|
<button id="dismissBanner" aria-label="Dismiss">×</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<h1><a href="/" id="homeLink">xmr<span>pay</span>.link</a></h1>
|
<h1><a href="/" id="homeLink">xmr<span>pay</span>.link</a></h1>
|
||||||
<p data-i18n="subtitle">Monero payment request in seconds</p>
|
<p data-i18n="subtitle">Monero payment request in seconds</p>
|
||||||
@@ -115,7 +120,7 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<p data-i18n-html="footer">Open Source · No Tracking · No KYC<br /><a href="https://gitea.schmidt.eco/schmidt1024/xmrpay.link" target="_blank" rel="noopener noreferrer">Source</a> · <a href="http://mc6wfeaqc7oijgdcudrr5zsotmwok3jzk3tu2uezzyjisn7nzzjjizyd.onion" title="Tor Hidden Service">Onion</a> · <a href="/privacy.html">Privacy & Terms</a><br /><span class="version">v1.0.0</span></p>
|
<p data-i18n-html="footer">Open Source · No Tracking · No KYC<br /><a href="https://github.com/schmidt1024/xmrpay" target="_blank" rel="noopener noreferrer">Source</a> · <a href="http://mc6wfeaqc7oijgdcudrr5zsotmwok3jzk3tu2uezzyjisn7nzzjjizyd.onion" title="Tor Hidden Service">Onion</a> · <a href="/privacy.html">Privacy & Terms</a><br /><span class="version">v1.0.0</span></p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<div class="lang-picker" id="langPicker">
|
<div class="lang-picker" id="langPicker">
|
||||||
@@ -132,7 +137,7 @@
|
|||||||
<div class="toast" id="toast"></div>
|
<div class="toast" id="toast"></div>
|
||||||
|
|
||||||
<script src="lib/qrcode.min.js?v=20260326-3" integrity="sha384-3zSEDfvllQohrq0PHL1fOXJuC/jSOO34H46t6UQfobFOmxE5BpjjaIJY5F2/bMnU" crossorigin="anonymous" defer></script>
|
<script src="lib/qrcode.min.js?v=20260326-3" integrity="sha384-3zSEDfvllQohrq0PHL1fOXJuC/jSOO34H46t6UQfobFOmxE5BpjjaIJY5F2/bMnU" crossorigin="anonymous" defer></script>
|
||||||
<script src="i18n.min.js?v=20260326-3" integrity="sha384-V43P6Gk3Zsd0cmqIx3V1Dffu0i3d3aFyb876gr5ez+1CIAzbFLFATfL1nuEZFzvC" crossorigin="anonymous" defer></script>
|
<script src="i18n.min.js?v=20260326-3" integrity="sha384-mKqQalrpTWCzSD1ErLtp+GqHpzJDm7D1jzHDMuhCW7ql2v9YkEzSfE4PNuTj4dqU" crossorigin="anonymous" defer></script>
|
||||||
<script src="app.min.js?v=20260326-3" integrity="sha384-tdgiaUZYJ6E+/EqlbzOvxRvySKQZNdxjNktRV3K75fitMLdkR5DXuVU9XTppNku5" crossorigin="anonymous" defer></script>
|
<script src="app.min.js?v=20260326-3" integrity="sha384-tdgiaUZYJ6E+/EqlbzOvxRvySKQZNdxjNktRV3K75fitMLdkR5DXuVU9XTppNku5" crossorigin="anonymous" defer></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
60
install.sh
Normal file
60
install.sh
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# xmrpay.link — Self-hosting installer
|
||||||
|
# Usage: curl -sL https://xmrpay.link/install.sh | sh -s your-domain.com
|
||||||
|
|
||||||
|
DOMAIN="${1:-}"
|
||||||
|
INSTALL_DIR="/opt/xmrpay"
|
||||||
|
IMAGE="schmidt1024/xmrpay:latest"
|
||||||
|
COMPOSE_URL="https://raw.githubusercontent.com/schmidt1024/xmrpay/master/docker-compose.yml"
|
||||||
|
|
||||||
|
# ── Helpers ───────────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
info() { printf '\033[1;34m→\033[0m %s\n' "$1"; }
|
||||||
|
ok() { printf '\033[1;32m✓\033[0m %s\n' "$1"; }
|
||||||
|
fail() { printf '\033[1;31m✗\033[0m %s\n' "$1" >&2; exit 1; }
|
||||||
|
|
||||||
|
# ── Preflight ─────────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
[ "$(id -u)" -eq 0 ] || fail "Run as root: curl -sL https://xmrpay.link/install.sh | sudo sh -s $DOMAIN"
|
||||||
|
[ -n "$DOMAIN" ] || fail "Usage: curl -sL https://xmrpay.link/install.sh | sh -s YOUR-DOMAIN.COM"
|
||||||
|
|
||||||
|
# ── Install Docker if missing ─────────────────────────────────────────────────
|
||||||
|
|
||||||
|
if ! command -v docker >/dev/null 2>&1; then
|
||||||
|
info "Installing Docker..."
|
||||||
|
curl -fsSL https://get.docker.com | sh
|
||||||
|
systemctl enable --now docker
|
||||||
|
ok "Docker installed"
|
||||||
|
else
|
||||||
|
ok "Docker found"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ── Set up xmrpay ────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
info "Setting up xmrpay in $INSTALL_DIR..."
|
||||||
|
mkdir -p "$INSTALL_DIR"
|
||||||
|
cd "$INSTALL_DIR"
|
||||||
|
|
||||||
|
curl -fsSL "$COMPOSE_URL" -o docker-compose.yml
|
||||||
|
|
||||||
|
cat > .env <<EOF
|
||||||
|
DOMAIN=$DOMAIN
|
||||||
|
XMRPAY_IMAGE=$IMAGE
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# ── Start ─────────────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
info "Starting xmrpay..."
|
||||||
|
docker compose pull
|
||||||
|
docker compose up -d
|
||||||
|
|
||||||
|
ok "xmrpay is running!"
|
||||||
|
echo ""
|
||||||
|
echo " https://$DOMAIN"
|
||||||
|
echo ""
|
||||||
|
echo " Watchtower checks for updates every 6 hours."
|
||||||
|
echo " Data stored in Docker volume: xmrpay-data"
|
||||||
|
echo " Config: $INSTALL_DIR/.env"
|
||||||
|
echo ""
|
||||||
@@ -198,7 +198,7 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<p data-i18n-html="footer">Open Source · No Tracking · No KYC · <a href="https://gitea.schmidt.eco/schmidt1024/xmrpay.link" target="_blank" rel="noopener noreferrer">Source</a> · <a href="http://mc6wfeaqc7oijgdcudrr5zsotmwok3jzk3tu2uezzyjisn7nzzjjizyd.onion" title="Tor Hidden Service">Onion</a> · <a href="/privacy.html">Privacy & Terms</a></p>
|
<p data-i18n-html="footer">Open Source · No Tracking · No KYC · <a href="https://github.com/schmidt1024/xmrpay" target="_blank" rel="noopener noreferrer">Source</a> · <a href="http://mc6wfeaqc7oijgdcudrr5zsotmwok3jzk3tu2uezzyjisn7nzzjjizyd.onion" title="Tor Hidden Service">Onion</a> · <a href="/privacy.html">Privacy & Terms</a></p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<div class="lang-picker" id="langPicker">
|
<div class="lang-picker" id="langPicker">
|
||||||
|
|||||||
2
s.php
2
s.php
@@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
$pathInfo = isset($_SERVER['PATH_INFO']) && is_string($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : null;
|
$pathInfo = isset($_SERVER['PATH_INFO']) && is_string($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] !== '' ? $_SERVER['PATH_INFO'] : null;
|
||||||
$queryCode = isset($_GET['c']) && is_string($_GET['c']) ? $_GET['c'] : '';
|
$queryCode = isset($_GET['c']) && is_string($_GET['c']) ? $_GET['c'] : '';
|
||||||
$code = trim($pathInfo ?? $queryCode, '/');
|
$code = trim($pathInfo ?? $queryCode, '/');
|
||||||
|
|
||||||
|
|||||||
@@ -68,6 +68,15 @@ else
|
|||||||
echo "Skipping pre-deploy backup (DEPLOY_BACKUP_ENABLE=0)."
|
echo "Skipping pre-deploy backup (DEPLOY_BACKUP_ENABLE=0)."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# ── Inject version from git tags ──────────────────────────────────────────────
|
||||||
|
GIT_VERSION=$(git describe --tags --always 2>/dev/null || echo "dev")
|
||||||
|
# Turn v1.0.0-3-gabc1234 into 1.0.0+3
|
||||||
|
VERSION=$(echo "$GIT_VERSION" | sed -E 's/^v//; s/-([0-9]+)-g[0-9a-f]+$/+\1/')
|
||||||
|
echo "Version: $VERSION"
|
||||||
|
|
||||||
|
sed -i -E "s|VERSION = '[^']*'|VERSION = '${VERSION}'|" i18n.js
|
||||||
|
sed -i -E "s|(<span class=\"version\">v)[^<]*(</span>)|\1${VERSION}\2|" index.html
|
||||||
|
|
||||||
# ── Minify & update SRI hashes ────────────────────────────────────────────────
|
# ── Minify & update SRI hashes ────────────────────────────────────────────────
|
||||||
echo "Minifying JS..."
|
echo "Minifying JS..."
|
||||||
TERSER="${TERSER:-terser}"
|
TERSER="${TERSER:-terser}"
|
||||||
|
|||||||
34
style.css
34
style.css
@@ -58,6 +58,40 @@ body {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.self-host-banner {
|
||||||
|
background: var(--accent);
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
padding: 0.6rem 2.5rem 0.6rem 1rem;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
line-height: 1.4;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.self-host-banner a {
|
||||||
|
color: #fff;
|
||||||
|
font-weight: 600;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.self-host-banner button {
|
||||||
|
position: absolute;
|
||||||
|
right: 0.5rem;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
cursor: pointer;
|
||||||
|
opacity: 0.7;
|
||||||
|
padding: 0.25rem 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.self-host-banner button:hover {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 2rem 1rem 1rem;
|
padding: 2rem 1rem 1rem;
|
||||||
|
|||||||
Reference in New Issue
Block a user