1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00
imgproxy/docs/configuration.md

183 lines
9.6 KiB
Markdown
Raw Normal View History

2018-10-04 14:59:57 +02:00
# Configuration
imgproxy is [Twelve-Factor-App](https://12factor.net/)-ready and can be configured using `ENV` variables.
### URL signature
2018-10-08 08:23:20 +02:00
imgproxy allows URLs to be signed with a key and salt. This feature is disabled by default, but it is _highly_ recommended to enable it in production. To enable URL signature checking, define the key/salt pair:
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
* `IMGPROXY_KEY`: hex-encoded key;
* `IMGPROXY_SALT`: hex-encoded salt;
* `IMGPROXY_SIGNATURE_SIZE`: number of bytes to use for signature before encoding to Base64. Default: 32;
2018-10-04 14:59:57 +02:00
2018-11-15 14:35:06 +02:00
You can specify multiple key/salt pairs by dividing keys and salts with comma (`,`). imgproxy will check URL signatures with each pair. Useful when you need to change key/salt pair in your application with zero downtime.
You can also specify paths to files with a hex-encoded keys and salts, one by line (useful in a development environment):
2018-10-04 14:59:57 +02:00
```bash
$ imgproxy -keypath /path/to/file/with/key -saltpath /path/to/file/with/salt
```
If you need a random key/salt pair real fast, you can quickly generate it using, for example, the following snippet:
```bash
$ echo $(xxd -g 2 -l 64 -p /dev/random | tr -d '\n')
```
### Server
2018-10-08 08:23:20 +02:00
* `IMGPROXY_BIND`: TCP address and port to listen on. Default: `:8080`;
* `IMGPROXY_READ_TIMEOUT`: the maximum duration (in seconds) for reading the entire image request, including the body. Default: `10`;
* `IMGPROXY_WRITE_TIMEOUT`: the maximum duration (in seconds) for writing the response. Default: `10`;
* `IMGPROXY_DOWNLOAD_TIMEOUT`: the maximum duration (in seconds) for downloading the source image. Default: `5`;
* `IMGPROXY_CONCURRENCY`: the maximum number of image requests to be processed simultaneously. Default: number of CPU cores times two;
* `IMGPROXY_MAX_CLIENTS`: the maximum number of simultaneous active connections. Default: `IMGPROXY_CONCURRENCY * 10`;
* `IMGPROXY_TTL`: duration (in seconds) sent in `Expires` and `Cache-Control: max-age` HTTP headers. Default: `3600` (1 hour);
* `IMGPROXY_USER_AGENT`: User-Agent header that will be sent with source image request. Default: `imgproxy/%current_version`;
2018-10-08 08:23:20 +02:00
* `IMGPROXY_USE_ETAG`: when `true`, enables using [ETag](https://en.wikipedia.org/wiki/HTTP_ETag) HTTP header for HTTP cache control. Default: false;
2018-10-04 14:59:57 +02:00
### Security
2018-11-15 15:25:53 +02:00
imgproxy protects you from so-called image bombs. Here is how you can specify maximum image resolution which you consider reasonable:
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
* `IMGPROXY_MAX_SRC_RESOLUTION`: the maximum resolution of the source image, in megapixels. Images with larger actual size will be rejected. Default: `16.8`;
2018-10-04 14:59:57 +02:00
2018-11-15 16:04:12 +02:00
imgproxy can process animated GIFs, but since this operation is pretty heavy, only one frame is processed by default. You can increase the maximum of GIF frames to process with the following variable:
* `IMGPROXY_MAX_GIF_FRAMES`: the maximum of animated GIF frames to being processed. Default: `1`.
**Note:** imgproxy summarizes all GIF frames resolutions while checking source image resolution.
2018-10-08 08:23:20 +02:00
You can also specify a secret to enable authorization with the HTTP `Authorization` header for use in production environments:
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
* `IMGPROXY_SECRET`: the authorization token. If specified, the HTTP request should contain the `Authorization: Bearer %secret%` header;
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
imgproxy does not send CORS headers by default. Specify allowed origin to enable CORS headers:
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
* `IMGPROXY_ALLOW_ORIGIN`: when set, enables CORS headers with provided origin. CORS headers are disabled by default.
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
When you use imgproxy in a development environment, it can be useful to ignore SSL verification:
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
* `IMGPROXY_IGNORE_SSL_VERIFICATION`: when true, disables SSL verification, so imgproxy can be used in a development environment with self-signed SSL certificates.
2018-10-04 14:59:57 +02:00
### Compression
2018-10-30 14:20:02 +02:00
* `IMGPROXY_QUALITY`: default quality of the resulting image, percentage. Default: `80`;
2018-10-08 08:23:20 +02:00
* `IMGPROXY_GZIP_COMPRESSION`: GZip compression level. Default: `5`;
* `IMGPROXY_JPEG_PROGRESSIVE` : when true, enables progressive JPEG compression. Default: false;
* `IMGPROXY_PNG_INTERLACED`: when true, enables interlaced PNG compression. Default: false;
2018-10-04 14:59:57 +02:00
## WebP support detection
2018-10-08 08:23:20 +02:00
imgproxy can use the `Accept` HTTP header to detect if the browser supports WebP and use it as the default format. This feature is disabled by default and can be enabled by the following options:
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
* `IMGPROXY_ENABLE_WEBP_DETECTION`: enables WebP support detection. When the file extension is omitted in the imgproxy URL and browser supports WebP, imgproxy will use it as the resulting format;
* `IMGPROXY_ENFORCE_WEBP`: enables WebP support detection and enforces WebP usage. If the browser supports WebP, it will be used as resulting format even if another extension is specified in the imgproxy URL.
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
When WebP support detection is enabled, please take care to configure your CDN or caching proxy to take the `Accept` HTTP header into account while caching.
**Warning**: Headers cannot be signed. This means that an attacker can bypass your CDN cache by changing the `Accept` HTTP headers. Have this in mind when configuring your production caching setup.
## Client Hints support
2018-11-15 14:58:35 +02:00
imgproxy can use the `Width`, `Viewport-Width` or `DPR` HTTP headers to determine default width and DPR options using Client Hints. This feature is disabled by default and can be enabled by the following option:
2018-11-16 11:01:08 +02:00
* `IMGPROXY_ENABLE_CLIENT_HINTS`: enables Client Hints support to determine default width and DPR options. Read [here](https://developers.google.com/web/updates/2015/09/automating-resource-selection-with-client-hints) details about Client Hints.
**Warning**: Headers cannot be signed. This means that an attacker can bypass your CDN cache by changing the `Width`, `Viewport-Width` or `DPR` HTTP headers. Have this in mind when configuring your production caching setup.
2018-10-04 14:59:57 +02:00
### Watermark
2018-11-02 18:33:56 +02:00
* `IMGPROXY_WATERMARK_DATA`: Base64-encoded image data. You can easily calculate it with `base64 tmp/watermark.png | tr -d '\n'`;
* `IMGPROXY_WATERMARK_PATH`: path to the locally stored image;
* `IMGPROXY_WATERMARK_URL`: watermark image URL;
* `IMGPROXY_WATERMARK_OPACITY`: watermark base opacity.
Read more about watermarks in the [Watermark](./watermark.md) guide.
2018-10-04 14:59:57 +02:00
### Presets
2018-10-08 08:23:20 +02:00
Read about imgproxy presets in the [Presets](./presets.md) guide.
2018-10-04 14:59:57 +02:00
There are two ways to define presets:
2018-10-08 08:23:20 +02:00
##### Using an environment variable
2018-10-04 14:59:57 +02:00
* `IMGPROXY_PRESETS`: set of preset definitions, comma-divided. Example: `default=resizing_type:fill/enlarge:1,sharp=sharpen:0.7,blurry=blur:2`. Default: blank.
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
##### Using a command line argument
2018-10-04 14:59:57 +02:00
```bash
$ imgproxy -presets /path/to/file/with/presets
```
2018-10-08 08:23:20 +02:00
The file should contain preset definitions, one per line. Lines starting with `#` are treated as comments. Example:
2018-10-04 14:59:57 +02:00
```
default=resizing_type:fill/enlarge:1
2018-10-04 14:59:57 +02:00
# Sharpen the image to make it look better
sharp=sharpen:0.7
# Blur the image to hide details
blurry=blur:2
```
### Serving local files
imgproxy can serve your local images, but this feature is disabled by default. To enable it, specify your local filesystem root:
2018-10-08 08:23:20 +02:00
* `IMGPROXY_LOCAL_FILESYSTEM_ROOT`: the root of the local filesystem. Keep empty to disable serving of local files.
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
Check out the [Serving local files](./serving_local_files.md) guide to learn more.
2018-10-04 14:59:57 +02:00
### Serving files from Amazon S3
2018-10-08 08:23:20 +02:00
imgproxy can process files from Amazon S3 buckets, but this feature is disabled by default. To enable it, set `IMGPROXY_USE_S3` to `true`:
2018-11-16 12:06:53 +02:00
* `IMGPROXY_USE_S3`: when `true`, enables image fetching from Amazon S3 buckets. Default: false;
* `IMGPROXY_S3_ENDPOINT`: custom S3 endpoint to being used by imgproxy.
2018-10-08 08:23:20 +02:00
Check out the [Serving files from S3](./serving_files_from_s3.md) guide to learn more.
2018-10-30 14:12:56 +02:00
### Serving files from Google Cloud Storage
imgproxy can process files from Google Cloud Storage buckets, but this feature is disabled by default. To enable it, set `IMGPROXY_GCS_KEY` to the content of Google Cloud JSON key:
* `IMGPROXY_GCS_KEY`: Google Cloud JSON key. When set, enables image fetching from Google Cloud Storage buckets. Default: blank.
Check out the [Serving files from Google Cloud Storage](./serving_files_from_google_cloud_storage.md) guide to learn more.
2018-10-25 15:24:34 +02:00
### New Relic metrics
imgproxy can send its metrics to New Relic. Specify your New Relic license key to activate this feature:
2018-11-02 18:33:56 +02:00
* `IMGPROXY_NEW_RELIC_KEY`: New Relic license key;
2018-11-16 12:06:53 +02:00
* `IMGPROXY_NEW_RELIC_APP_NAME`: New Relic application name. Default: `imgproxy`.
2018-10-25 15:24:34 +02:00
Check out the [New Relic](./new_relic.md) guide to learn more.
2018-10-29 14:04:47 +02:00
### Prometheus metrics
imgproxy can collect its metrics for Prometheus. Specify binding for Prometheus metrics server to activate this feature:
2018-11-16 12:06:53 +02:00
* `IMGPROXY_PROMETHEUS_BIND`: Prometheus metrics server binding. Can't be the same as `IMGPROXY_BIND`. Default: blank.
2018-10-29 14:04:47 +02:00
Check out the [Prometheus](./prometheus.md) guide to learn more.
### Error reporting
2018-11-14 15:41:16 +02:00
imgproxy can report occurred errors to Bugsnag, Honeybadger and Sentry:
2018-11-14 15:41:16 +02:00
* `IMGPROXY_BUGSNAG_KEY`: Bugsnag API key. When provided, enables error reporting to Bugsnag;
2018-11-16 12:06:53 +02:00
* `IMGPROXY_BUGSNAG_STAGE`: Bugsnag stage to report to. Default: `production`;
* `IMGPROXY_HONEYBADGER_KEY`: Honeybadger API key. When provided, enables error reporting to Honeybadger;
2018-11-16 12:06:53 +02:00
* `IMGPROXY_HONEYBADGER_ENV`: Honeybadger env to report to. Default: `production`.
* `IMGPROXY_SENTRY_DSN`: Sentry project DSN. When provided, enables error reporting to Sentry;
* `IMGPROXY_SENTRY_ENVIRONMENT`: Sentry environment to report to. Default: `production`.
* `IMGPROXY_SENTRY_RELEASE`: Sentry release to report to. Default: `imgproxy/{imgproxy version}`.
2018-11-14 15:41:16 +02:00
2018-10-04 14:59:57 +02:00
### Miscellaneous
2018-10-08 08:23:20 +02:00
* `IMGPROXY_BASE_URL`: base URL prefix that will be added to every requested image URL. For example, if the base URL is `http://example.com/images` and `/path/to/image.png` is requested, imgproxy will download the source image from `http://example.com/images/path/to/image.png`. Default: blank.