Giter Club home page Giter Club logo

Comments (4)

bepstein111 avatar bepstein111 commented on June 12, 2024 1

@freekvh amazing, thank you so much!! I will give it a shot later today and let you know!

from projectsend.

sinag avatar sinag commented on June 12, 2024

I have the same problem with max file set to 50gb, try to send something more than 10gb, same problem, and upload never completes btw

from projectsend.

bepstein111 avatar bepstein111 commented on June 12, 2024

@freekvh Sorry that I don't have any information related to this issue, but I cannot find any information about getting projectsend working with Caddy. care to share your caddyfile? right now for some reason I have to go to use the port number even at my public url.

from projectsend.

freekvh avatar freekvh commented on June 12, 2024

@bepstein111 This is what I have:

In docker-compose.yaml:

version: "3.1"
services:
  caddy:
    image: caddy
    ports:
      - "80:80"
      - "443:443"
      - "443:443/udp"
    volumes:
      - ./caddy/Caddyfile:/etc/caddy/Caddyfile
      - ./caddy/sites:/var/www/html
      - ./caddy/caddy_data:/data
    depends_on:
      - projectsend
    restart: unless-stopped

  projectsend:
    image: lscr.io/linuxserver/projectsend:latest
    container_name: projectsend
    depends_on:
      - db-projectsend
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Amsterdam
      - MAX_UPLOAD=20000
    volumes:
      - ./projectsend_config:/config
      - ./projectsend_data:/data
    # ports:
    #   - 127.0.0.1:8080:80
    restart: unless-stopped

  db-projectsend:
    image: lscr.io/linuxserver/mariadb
    container_name: mariadb-projectsend
    environment:
      - PUID=1000
      - PGID=1000
      - MYSQL_ROOT_PASSWORD=${MARIADBPASSWORDPS}
      - TZ=Europe/Amsterdam
      - MYSQL_DATABASE=PS_database
      - MYSQL_USER=PS_dbuser
      - MYSQL_PASSWORD=${DBPASSWORDPS}
    volumes:
      - ./db-projectsend:/config
    restart: unless-stopped

Then in the caddyfile:

data.my-domain.com {
	reverse_proxy projectsend:80
}

(on the side, I love how simple caddy makes such an https enabled reverse proxy compared to the old days, absolutely a game changer for me.)

I don't have the service running atm but I believe it autodirects to https.

Let me know how it goes, good luck.

from projectsend.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.