diff options
| author | Christian Cleberg <[email protected]> | 2026-08-02 15:29:37 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-08-02 15:35:14 -0500 |
| commit | 7acbd87221f6e4594edf3db029520997027a7bed (patch) | |
| tree | 7b838fae724f3bb0375df0d0138b8387f58b50c5 /SETUP.txt | |
| parent | 4178e3893f310425e76f6d4515af9e7d0ea36a0a (diff) | |
| download | skunky-art-7acbd87221f6e4594edf3db029520997027a7bed.tar.gz skunky-art-7acbd87221f6e4594edf3db029520997027a7bed.tar.bz2 skunky-art-7acbd87221f6e4594edf3db029520997027a7bed.zip | |
Diffstat (limited to 'SETUP.txt')
| -rwxr-xr-x | SETUP.txt | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/SETUP.txt b/SETUP.txt new file mode 100755 index 0000000..987041a --- /dev/null +++ b/SETUP.txt @@ -0,0 +1,56 @@ +# Units +Maximum file size in megabytes, requires numeric value.<br> +Time units: +* `i` — minutes +* `h` — hours +* `w` — weeks +* `m` — months +* `y` — years + +# Config +* `listen` — IP and port to listen on in the following form: ip:port +* `uri` — Instance URI. Example: `"uri":"/art/"` -> https://skunky.ebloid.ru/art/ +* `cache` — Caching system; default is off. + * `enabled` — Caching system state, requires boolean value + * `path` — Path to cache directory. It must be writable by the user SkunkyArt + runs as, and SkunkyArt refuses to start if it is not. The container image + runs as uid 10000, so a bind-mounted cache needs + `sudo chown -R 10000:10000 <dir>` on the host. + * `memcache` — Also keep served media in RAM, on top of the on-disk cache. + Entries are scored by how often they are requested and dropped once they go + a round unused. The cache is bounded only by that scoring, so leave it off + unless you have RAM to spare for your traffic. + * `lifetime` — Cached file life time, requires numeric value, followed by multiplicative suffix (see Time Units for details) + * `max-size` — Maximum file size in megabytes + * `update-interval` — Automatic rotation interval +* `static-path` — This setting determines path to static, which will be copied to RAM when SkunkyArt is started. Useless if you're use binary compiled with 'embed' tag. +* `download-proxy` — Outbound proxy used when fetching media from DeviantArt's + CDN. Leave empty (`""`) unless you actually run a proxy: if this points at + something that isn't listening, every image 502s while pages still render, + because only media fetches go through it. Inside a container `127.0.0.1` is + the container itself, so a host-side proxy must be addressed by service name + or host IP, not loopback. +* `user-agent` — String, which SkunkyArt uses as UA +* `proxy` — Serve media through this instance instead of linking straight to + DeviantArt's CDN. Required by `cache`; when off, clients fetch images from + wixmp directly. +* `nsfw` — Show mature content. + +# Setting up reverse proxy +Pretty much business as usual, except for the [`X-Forwarded-Proto`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-Proto) header setting. + +Nginx example configuration: +```apache +server { + listen 443 ssl; + server_name skunky.example.com; + + # In case of subdomain, use / instend of ((BASE_URL)) + location ((BASE_URL)) { + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header Host $host; + proxy_http_version 1.1; + proxy_pass http://((IP)):((PORT)); + } +} +```
\ No newline at end of file |
