Favicon of ProjectSend (LinuxServer.io)

ProjectSend (LinuxServer.io)

Share files securely with clients using a self-hosted platform. Maintain complete control over your data with advanced permissions, encryption, and audit logs.

Provide a secure, self-hosted environment to share files directly with clients while keeping data private. This open-source solution gives you absolute authority over your infrastructure, ensuring sensitive documents never pass through third-party servers. Easily manage client access, track activity, and customize the experience to match professional workflows.

Key features include:

  • Server-Side Encryption: Protect files at rest using AES-256-GCM encryption.
  • Advanced Access Controls: Create custom roles, manage permissions, and set download limits.
  • Comprehensive Audit Logs: Track every action and download to maintain complete visibility.
  • Enterprise Authentication: Integrate with LDAP or Active Directory for user management.
  • External Storage: Connect with AWS S3 for flexible upload destinations.
  • Automated Expiration: Set expiration dates on sensitive uploads to prevent indefinite access.

Directory Structure

projectsend-linuxserver-io
projectsend
config
data
db_data
.env
docker-compose.yml

docker-compose.yml

services:
  projectsend:
    image: lscr.io/linuxserver/projectsend:latest
    container_name: projectsend
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - ./config:/config
      - ./data:/data
    ports:
      - 8080:80
    restart: unless-stopped
    depends_on:
      - mariadb

  mariadb:
    image: lscr.io/linuxserver/mariadb:latest
    container_name: projectsend_db
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
      - MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
      - MYSQL_DATABASE=projectsend
      - MYSQL_USER=projectsend
      - MYSQL_PASSWORD=${DB_PASSWORD}
    volumes:
      - ./db_data:/config
    restart: unless-stopped

.env

DB_ROOT_PASSWORD=your_secure_root_password
DB_PASSWORD=your_secure_db_password

Share:

Ad
Favicon

 

  
 

Similar to ProjectSend (LinuxServer.io)

Favicon

 

  
  
Favicon

 

  
  
Favicon