30 lines
1.1 KiB
Ruby
30 lines
1.1 KiB
Ruby
Imgproxy.configure do |config|
|
|
# imgproxy endpoint
|
|
#
|
|
# Full URL to where your imgproxy lives.
|
|
#
|
|
config.endpoint = if Rails.env.production?
|
|
# Use /images with the same domain on Production as
|
|
# our default configuration
|
|
URL.url("images") # ie. https://forem.dev/images
|
|
else
|
|
# On other environments, rely on ApplicationConfig for a
|
|
# more flexible configuration
|
|
# ie. default imgproxy endpoint is localhost:8080
|
|
ApplicationConfig["IMGPROXY_ENDPOINT"]
|
|
end
|
|
|
|
# Next, you have to provide your signature key and salt.
|
|
# If unsure, check out https://github.com/imgproxy/imgproxy/blob/master/docs/configuration.md first.
|
|
|
|
# Hex-encoded signature key
|
|
config.hex_key = ApplicationConfig["IMGPROXY_KEY"]
|
|
# Hex-encoded signature salt
|
|
config.hex_salt = ApplicationConfig["IMGPROXY_SALT"]
|
|
|
|
# Base64 encode all URLs
|
|
config.base64_encode_urls = true
|
|
|
|
# Always escape plain URLs
|
|
# config.always_escape_plain_urls = true
|
|
end
|