Favicon of Lighttpd

Lighttpd

Run a secure, fast, and flexible web server optimized for high-performance. Use less memory and CPU while supporting FastCGI, URL-Rewriting, and compression.

Lighttpd is a web server designed for high-performance environments where speed and efficiency are critical. It is secure, fast, compliant, and highly flexible, providing a robust solution for serving web content. Its primary advantage is its low resource consumption, using significantly less memory and CPU compared to other popular web servers. This makes it an ideal choice for systems of all sizes, from embedded devices to large-scale server farms.

Despite its lightweight nature, it offers a comprehensive and advanced feature set to handle complex web applications. Key features include:

  • FastCGI and CGI: For running dynamic scripts and applications.
  • Authentication: Secure access to specific areas of your site.
  • Output-Compression: Reduces bandwidth usage and improves load times.
  • URL-Rewriting: Create clean, user-friendly URLs.

As an open-source project, Lighttpd benefits from active community development and is a reliable choice for any web serving needs.

Directory Structure

lighttpd
redmine
postgres-data
redmine-data
.env
docker-compose.yml

docker-compose.yml

services:
  redmine:
    image: redmine:latest
    restart: always
    ports:
      - "8080:3000"
    environment:
      REDMINE_DB_POSTGRES: db
      REDMINE_DB_USERNAME: redmine
      REDMINE_DB_PASSWORD: ${REDMINE_DB_PASSWORD}
      REDMINE_DB_DATABASE: redmine
      REDMINE_SECRET_KEY_BASE: ${REDMINE_SECRET_KEY_BASE}
    volumes:
      - ./redmine-data:/usr/src/redmine/files
    depends_on:
      - db

  db:
    image: postgres:14
    restart: always
    environment:
      POSTGRES_USER: redmine
      POSTGRES_PASSWORD: ${REDMINE_DB_PASSWORD}
      POSTGRES_DB: redmine
    volumes:
      - ./postgres-data:/var/lib/postgresql/data

.env

REDMINE_DB_PASSWORD=your_super_secret_database_password
REDMINE_SECRET_KEY_BASE=your_super_secret_key_base_for_redmine_sessions
Categories:

Share:

Ad
Favicon

 

  
 

Similar to Lighttpd

Favicon

 

  
  
Favicon

 

  
  
Favicon