Skip to content

Instantly share code, notes, and snippets.

@gdamjan
Last active August 2, 2024 15:23
Show Gist options
  • Save gdamjan/b3e1a715080fee5941f85a10967c93e0 to your computer and use it in GitHub Desktop.
Save gdamjan/b3e1a715080fee5941f85a10967c93e0 to your computer and use it in GitHub Desktop.
uwsgi-cgi docker image for running scripts in /cgi-bin
[uwsgi]
master = true
die-on-term = yes
http-socket = :$(HTTP_PORT)
http-socket-modifier1 = 9
plugins = cgi, ugreen
ugreen = true
cgi = /cgi-bin=/cgi-bin
cgi-allowed-ext = .sh
cgi-allowed-ext = .cgi
FROM alpine:3.20
RUN apk add --no-cache uwsgi-cgi uwsgi-ugreen
COPY cgi-server.ini /etc/uwsgi/cgi-server.ini
VOLUME /cgi-bin
EXPOSE 8000
ENV HTTP_PORT=8000
ENV UWSGI_UID=nobody
ENV UWSGI_ASYNC=20
ENTRYPOINT ["uwsgi", "--ini=/etc/uwsgi/cgi-server.ini"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment