Skip to content

Self-hosted mygpo getting error 500 #815

@mhay10

Description

@mhay10

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions