Last active
August 2, 2024 15:23
-
-
Save gdamjan/b3e1a715080fee5941f85a10967c93e0 to your computer and use it in GitHub Desktop.
uwsgi-cgi docker image for running scripts in /cgi-bin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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