# Installer fcgiwrap avec Homebrew, apk, apt, dnf, MacPorts, Nix, pacman, zypper

Consultez les chemins d'installation, exécutables, métadonnées et notes de sécurité de fcgiwrap pour les workflows d'agents IA.

## installation

```sh
sudo av install brew:fcgiwrap
```

Commandes d'installation supplémentaires:

### macOS

- Homebrew (100%):

```sh
brew install fcgiwrap
```

  Preuve: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install fcgiwrap
```

  Preuve: MacPorts ports tree: www/fcgiwrap/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add fcgiwrap
```

  Preuve: Alpine Linux edge package indexes: fcgiwrap from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install fcgiwrap
```

  Preuve: Debian stable package indexes: fcgiwrap from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install fcgiwrap
```

  Preuve: Fedora Rawhide package metadata: fcgiwrap from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#fcgiwrap
```

  Preuve: nixpkgs package indexes: pkgs/by-name/fc/fcgiwrap/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S fcgiwrap
```

  Preuve: Arch Linux sync databases: fcgiwrap from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install fcgiwrap
```

  Preuve: openSUSE Tumbleweed package metadata: fcgiwrap from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

## Faits du paquet

- **Clé du paquet:** brew:fcgiwrap
- **Gestionnaire de paquets:** Homebrew
- **Page du gestionnaire de paquets:** <https://formulae.brew.sh/formula/fcgiwrap>
- **Version:** 1.1.0
- **Résumé source:** CGI support for Nginx
- **Page d'accueil:** <https://www.nginx.com/resources/wiki/start/topics/examples/fcgiwrap/>
- **Dépôt:** <https://github.com/gnosek/fcgiwrap>
- **Docs amont:** <https://www.nginx.com/resources/wiki/start/topics/examples/fcgiwrap/>
- **Licence:** MIT
- **Archive source:** <https://github.com/gnosek/fcgiwrap/archive/refs/tags/1.1.0.tar.gz>
- **Généré:** 2026-08-04T22:13:35+00:00

## exécutables

- fcgiwrap (cli)
- fcgiwrap (alias)

## Dépendances

- fcgi

## Dépendances de compilation

- autoconf
- automake
- pkgconf

## Comportement d'installation

- hook post-installation: non défini
- Bouteille: disponible sur arm64_big_sur, arm64_linux, arm64_monterey, arm64_sequoia, arm64_sonoma, arm64_tahoe, arm64_ventura, big_sur, catalina, monterey, sonoma, ventura

## Version et fraîcheur

- page générée: 2026-08-04
- version du gestionnaire: 1.1.0
- données locales: OK
- dépôt amont: https://github.com/gnosek/fcgiwrap
- dernière version détectée: 1.1.0 (à jour)
- info: No package-manager update timestamp was available.
## Historique du projet et usages

fcgiwrap is a small FastCGI wrapper for running traditional CGI scripts. Its README describes it as lightweight, configuration-free, and intended to execute CGI scripts while passing request state through FastCGI parameters.

The tool is closely associated with Nginx deployments because Nginx does not execute CGI programs directly; fcgiwrap supplies the missing CGI execution layer while the web server talks FastCGI.

### Historique du projet

The public GitHub repository was created in 2008 by Grzegorz Nosek. The README presents fcgiwrap as a simple wrapper rather than a full application server: it links against the FastCGI development library, runs CGI scripts, and handles headers, environment variables, and stderr forwarding.

Over time the repository gained service-manager integration such as systemd socket activation files, reflecting the normal deployment style: a small persistent FastCGI endpoint supervised by the operating system or launched through a helper.

### Historique d'adoption

fcgiwrap's adoption comes from a narrow but durable need: serving existing CGI scripts behind FastCGI-only web-server configurations. The input metadata lists packages across Homebrew, Debian, Ubuntu, Fedora, Arch, Alpine, MacPorts, Nix, openSUSE, and others, which matches its role as infrastructure glue.

The README recommends launchers such as spawn-fcgi and also notes optional systemd support, showing the two common deployment eras for small FastCGI helper daemons.

### Modes d'utilisation

In direct mode, `SCRIPT_FILENAME` names the CGI program to execute. Otherwise, fcgiwrap combines `DOCUMENT_ROOT` and `SCRIPT_NAME`, then splits the result into the script path and `PATH_INFO`.

Operators usually run it as a long-lived process or socket-activated service, then configure a web server FastCGI location to pass CGI requests to the fcgiwrap socket.

### Pourquoi les passionnés de paquets s'y intéressent

fcgiwrap is the tiny package that keeps old CGI scripts deployable in newer web-server setups. It is not glamorous, but it is exactly the kind of bridge package that prevents legacy admin panels, hooks, and small scripts from forcing a web-server change.

Its package-manager value is that it externalizes CGI support: install one small daemon, point Nginx or another FastCGI-capable server at its socket, and avoid embedding CGI execution in the web server itself.

### Chronologie

- 2008: The public gnosek/fcgiwrap GitHub repository was created.
- 2008 onward: fcgiwrap was packaged as a lightweight CGI-over-FastCGI bridge for Unix-like systems.
- Later releases: The repository included systemd socket activation units for `/run/fcgiwrap.sock`.

### Related projects

- FastCGI/fcgi2 provides the protocol and library foundation.
- Nginx, spawn-fcgi, and systemd socket activation are common deployment companions.

### Sources

- <https://github.com/gnosek/fcgiwrap>
- <https://raw.githubusercontent.com/gnosek/fcgiwrap/master/README.rst>
- <https://raw.githubusercontent.com/gnosek/fcgiwrap/master/systemd/fcgiwrap.service>
- <https://raw.githubusercontent.com/gnosek/fcgiwrap/master/systemd/fcgiwrap.socket>


## Notes de sécurité

narrow executable package without higher-risk signals.

- **Risque Geiger:** vert / faible
- narrow executable package without higher-risk signals

## Détails de la base source

- **Source Database:** Homebrew formula API
- **Tap:** homebrew/core
- **Full Name:** fcgiwrap
- **Version Scheme:** 0
- **Revision:** 0
- **Bottle Stable Root URL:** <https://ghcr.io/v2/homebrew/core>
- **Deprecated:** no
- **Disabled:** no
- **Keg Only:** no
- **URL Keys:** stable

## Autres enregistrements de gestionnaires de paquets

- Debian apt - fcgiwrap - 1.1.0-16: normalized package name match | Debian stable package indexes: fcgiwrap from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | simple server to run CGI applications over FastCGI | https://github.com/gnosek/fcgiwrap
- Nix - fcgiwrap: normalized package name match | nixpkgs package indexes: pkgs/by-name/fc/fcgiwrap/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - fcgiwrap - 1.1.0-14build1: normalized package name match | Ubuntu 24.04 LTS package indexes: fcgiwrap from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | simple server to run CGI applications over FastCGI | https://github.com/gnosek/fcgiwrap
- apk - fcgiwrap - 1.1.0-r9: normalized package name match | Alpine Linux edge package indexes: fcgiwrap from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | Simple server for running CGI applications over FastCGI | https://github.com/gnosek/fcgiwrap
- apk - fcgiwrap-doc - 1.1.0-r9: normalized package name match | Alpine Linux edge package indexes: fcgiwrap-doc from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | Simple server for running CGI applications over FastCGI (documentation) | https://github.com/gnosek/fcgiwrap
- apk - fcgiwrap-openrc - 1.1.0-r9: normalized package name match | Alpine Linux edge package indexes: fcgiwrap-openrc from https://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz | Simple server for running CGI applications over FastCGI (OpenRC init scripts) | https://github.com/gnosek/fcgiwrap
- dnf - fcgiwrap - 1.1.0-28.20181108git99c942c.fc45: normalized package name match | Fedora Rawhide package metadata: fcgiwrap from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst | Simple FastCGI wrapper for CGI scripts | https://github.com/gnosek/fcgiwrap
- pacman - fcgiwrap - 1.1.0-10: normalized package name match | Arch Linux sync databases: fcgiwrap from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | A simple server for running CGI applications over FastCGI. | https://www.nginx.com/resources/wiki/start/topics/examples/fcgiwrap/
- zypper - fcgiwrap - 1.1.0+18+g99c942c-3.25: normalized package name match | openSUSE Tumbleweed package metadata: fcgiwrap from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | FastCGI wrapper for CGI scripts | https://github.com/gnosek/fcgiwrap
- zypper - fcgiwrap-nginx - 1.1.0+18+g99c942c-3.25: normalized package name match | openSUSE Tumbleweed package metadata: fcgiwrap-nginx from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | System services for using fcgiwrap with nginx | https://github.com/gnosek/fcgiwrap
- MacPorts - fcgiwrap: normalized package name match | MacPorts ports tree: www/fcgiwrap/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1


## Liens liés

- [Terminal utility packages](https://pkg.so/fr/terminal-utilities/) - Matched terminal and command-line workflow metadata.
- [Networking and protocol packages](https://pkg.so/fr/networking-protocol-tools/) - Matched network, protocol, or remote-service metadata.
- [Documentation packages](https://pkg.so/fr/documentation-tools/) - Matched documentation, manual, or publishing metadata.
- [Web development packages](https://pkg.so/fr/web-dev-tools/) - Matched web development metadata.
- [fcgi](https://pkg.so/fr/brew/fcgi/) - Runtime dependency declared by Homebrew.
- [pkgconf](https://pkg.so/fr/brew/pkgconf/) - Build dependency declared by Homebrew.
- [autoconf](https://pkg.so/fr/brew/autoconf/) - Build dependency declared by Homebrew.
- [automake](https://pkg.so/fr/brew/automake/) - Build dependency declared by Homebrew.
- [mighttpd2](https://pkg.so/fr/brew/mighttpd2/) - Shares pkgdb curated category or tags: cgi, cli, networking, web-server.
- [nginx](https://pkg.so/fr/brew/nginx/) - Shares pkgdb curated category or tags: cli, networking, web-server.
- [caddy](https://pkg.so/fr/brew/caddy/) - Shares pkgdb curated category or tags: cli, networking, web-server.
- [lighttpd](https://pkg.so/fr/brew/lighttpd/) - Shares pkgdb curated category or tags: cli, networking, web-server.
- [mongoose](https://pkg.so/fr/brew/mongoose/) - Shares pkgdb curated category or tags: cli, networking, web-server.
- [algernon](https://pkg.so/fr/brew/algernon/) - Shares pkgdb curated category or tags: cli, networking, web-server.
- [civetweb](https://pkg.so/fr/brew/civetweb/) - Shares pkgdb curated category or tags: cgi, cli, networking, web-server.

## Combined YAML source

View the package source record on GitHub. [combined/fcgiwrap.yml](https://github.com/mxcl/pkgdb/blob/main/combined/fcgiwrap.yml)


## Sources

- pkg.so package database
- Geiger risk classifier
- package-page enrichment
- curated package history
- package version freshness
- pkgdb category and tag curation
- package relationship graph
- external package-manager database matches
- cross-ecosystem install command graph
