Replies: 1 comment
-
@tweenpix |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
thanks advice
but i have problem
curl -i http://localhost:8888/_blurry/cacti.jpg
HTTP/1.1 503 Service Temporarily Unavailable
Server: nginx
Date: Sat, 16 Dec 2023 07:17:46 GMT
Content-Type: image/jpeg
Content-Length: 10682
Connection: keep-alive
X-Fallback: /noimage.jpg
i have prod server and i need add imgproxy server
from docker
nginx:
restart: unless-stopped
build: ./nginx
container_name: imgproxy_gateway
security_opt:
- no-new-privileges:true
volumes:
- ./www:/home:cached
- ./cache:/var/cache/nginx/imgproxy:delegated
- ./logs:/var/log/nginx:delegated
- ./imgproxy.conf:/etc/nginx/nginx.d/imgproxy.conf
- ./certs:/etc/nginx/certs
ports:
- 8888:80
- 4430:443/tcp
- 4430:443/udp
links:
- imgproxy:imgproxy
environment:
NGINX_ENTRYPOINT_QUIET_LOGS: 1
Beta Was this translation helpful? Give feedback.
All reactions