-
Notifications
You must be signed in to change notification settings - Fork 89
Open
Description
I am getting an error 500 when trying to register an account on a self-hosted gpodder instance. It this normal?
Here is my Docker file for mygpo and nginx reverse proxy
mygpo:
FROM python:3.9-alpine as server
RUN apk add --no-cache \
git \
gcc \
python3-dev \
py3-pip \
postgresql-dev \
musl-dev \
libffi-dev \
zlib-dev \
libpq \
libwebp \
libjpeg
RUN git clone -b https://github.com/gpodder/mygpo.git
WORKDIR /mygpo
RUN pip install -r requirements.txt
RUN pip install gunicorn celery django-celery-beat
EXPOSE 8000
CMD [ "gunicorn", "-b", ":8000", "mygpo.wsgi" ]
nginx:
FROM nginx:alpine
COPY default.conf /etc/nginx/conf.d/default.conf
Metadata
Metadata
Assignees
Labels
No labels