InstaFix icon indicating copy to clipboard operation
InstaFix copied to clipboard

Nginx Proxy manager configs?

Open MilkMGN opened this issue 9 months ago • 1 comments

Hey,

Wanting to deploy ddinsta on my lab. Would you know how to deploy this if i am not behind Trafik, and instead behind Nginx Proxy Manager? I assume i am missing some options as the docker-compose container is not printing anything in the log.

I assume it's just <yourdomain>/reel/<id>?

Thanks

MilkMGN avatar Apr 05 '25 11:04 MilkMGN

Just add instafix container to same docker network as your nginx-proxy-manager.

Then create simple proxy host

Image

For example my docker-compose config:

services:
  instafix:
    container_name: isfix
    image: ghcr.io/wikidepia/instafix:main
    restart: unless-stopped
    #ports:
    #  - "3000:3000"
    networks:
      -  npm-srv-1
networks:
  npm-srv-1:
     external: true

starikh avatar Apr 10 '25 20:04 starikh